From 1f8debb7dd614272092423f35cf49444f18498af Mon Sep 17 00:00:00 2001 From: Pedro Larroy <928489+larroy@users.noreply.github.com> Date: Fri, 10 Aug 2018 23:23:32 +0200 Subject: [PATCH] Document MXNET_LIBRARY_PATH environment variable which was not documented explicitly. (#12074) --- docs/faq/env_var.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/faq/env_var.md b/docs/faq/env_var.md index 6e9a3594168f..15ba225ea86d 100644 --- a/docs/faq/env_var.md +++ b/docs/faq/env_var.md @@ -8,6 +8,18 @@ For example, you can set these environment variables in Linux or macOS as follow export MXNET_GPU_WORKER_NTHREADS=3 ``` +Or in powershell: +``` +$env:MXNET_STORAGE_FALLBACK_LOG_VERBOSE=0 +``` + +## Variables controlling the execution environment + +* MXNET_LIBRARY_PATH + Absolute path indicating where the mxnet dynamic library is to be located, this would be the absolute + path to `libmxnet.so` or `libmxnet.dll` depending on the platform. The logic for loading the + library is in `python/mxnet/libinfo.py` + ## Set the Number of Threads * MXNET_GPU_WORKER_NTHREADS