You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 3, 2023. It is now read-only.
Run export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/ngraph_dist/lib/
Edit make/config.mk file to use_ngraph and point to your ngraph installation
a. USE_NGRAPH = 1
b. NGRAPH_DIR = $(HOME)/ngraph_dist
Compile mxnet by running make -j in the repo's base directory
Create and activate a virtualenv (python3 -m venv .venv && . .venv/bin/activate) if you don't have one already setup. If you have one setup already, just activate that one. This is not necessarily needed, just keeps things isolated.
Install the mxnet python package by running cd python && pip install -e . && cd ../
Running A+B * C unit tests
Run python tests/python/ngraph/test_abc.py --with-nnp
Running MNIST MLP
Run python example/image-classification/train_mnist.py --with-nnp