Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Document MXNET_LIBRARY_PATH environment variable which was not docume… #12074

Merged
merged 1 commit into from
Aug 10, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/faq/env_var.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down