Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/FBGEMM.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJianyu Huang <jianyuhuang@fb.com>2019-07-23 08:03:48 +0300
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>2019-07-23 08:11:33 +0300
commitf712cb2328a2b29424bdaeecb9c0731da2cd997b (patch)
tree9d1d47a2f79b998f5817786af0e865b83d90f23d
parent1419a6e114990a37856b2f08c78e2e7f2cc57010 (diff)
Update OSS build instructions for submodule build (#110)
Summary: Pull Request resolved: https://github.com/pytorch/FBGEMM/pull/110 Due to the update the ASMJIT submodule in the near future, we add the additional instruction for submodule update for OSS users. Reviewed By: dskhudia Differential Revision: D16415043 fbshipit-source-id: 0488dda34a5916a40eee948a5b7455cf8770d72d
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index 2335b81..d287c44 100644
--- a/README.md
+++ b/README.md
@@ -64,6 +64,9 @@ General build instructions are as follows:
```
git clone --recursive https://github.com/pytorch/FBGEMM.git
cd FBGEMM
+# if you are updating an existing checkout
+git submodule sync
+git submodule update --init --recursive
mkdir build && cd build
cmake ..
make