"example/01_gemm/gemm_xdl_fp64.cpp" did not exist on "cec69bc3bc200de7e09396579fe33cb153f8afeb"
Installation.md 789 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Installation instructions
===

## install using deb file

TBD

## install from source code
   * Prepare Node.js 10.9.0 or above
   
         wget https://nodejs.org/dist/v10.9.0/node-v10.9.0-linux-x64.tar.xz
         tar xf node-v10.9.0-linux-x64.tar.xz
         mv node-v10.9.0-linux-x64/* /usr/local/node/
   * Prepare Yarn 1.9.4 or above

         wget https://github.com/yarnpkg/yarn/releases/download/v1.9.4/yarn-v1.9.4.tar.gz
         tar xf yarn-v1.9.4.tar.gz
         mv yarn-v1.9.4/* /usr/local/yarn/
   * Add Node.js and Yarn in PATH

         export PATH=/usr/local/node/bin:/usr/local/yarn/bin:$PATH
   * clone nni source code

         git clone https://github.com/Microsoft/NeuralNetworkIntelligence
   * build and install nni

         make build
         sudo make install