Skip to content

Commit d7bd01d

Browse files
authored
Update README.md
1 parent b90b9c8 commit d7bd01d

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,24 @@ git clone https://github.com/msracver/FCIS.git
8686
2. For Windows users, run ``cmd .\init.bat``. For Linux user, run `sh ./init.sh`. The scripts will build cython module automatically and create some folders.
8787

8888
3. Install MXNet:
89+
90+
**Note: The MXNet's Custom Op cannot execute parallelly using multi-gpus after this [PR](https://github.com/apache/incubator-mxnet/pull/6928). We strongly suggest the user rollback to version [MXNet@(commit 998378a)](https://github.com/dmlc/mxnet/tree/998378a) for training (following Section 3.2 - 3.5).**
91+
92+
***Quick start***
8993

90-
3.1 Clone MXNet and checkout to [MXNet@(commit 62ecb60)](https://github.com/dmlc/mxnet/tree/62ecb60) by
94+
3.1 Install MXNet and all dependencies by
9195
```
92-
git clone --recursive https://github.com/dmlc/mxnet.git
93-
git checkout 62ecb60
94-
git submodule update
96+
pip install -r requirements.txt
9597
```
96-
3.2 Copy operators in `$(FCIS_ROOT)/fcis/operator_cxx` to `$(YOUR_MXNET_FOLDER)/src/operator/contrib` by
98+
If there is no other error message, MXNet should be installed successfully.
99+
100+
***Build from source (alternative way)***
101+
102+
3.2 Clone MXNet and checkout to [MXNet@(commit 998378a)](https://github.com/dmlc/mxnet/tree/998378a) by
97103
```
98-
cp -r $(FCIS_ROOT)/fcis/operator_cxx/* $(MXNET_ROOT)/src/operator/contrib/
104+
git clone --recursive https://github.com/dmlc/mxnet.git
105+
git checkout 998378a
106+
git submodule update
99107
```
100108
3.3 Compile MXNet
101109
```

0 commit comments

Comments
 (0)