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

github.com/marian-nmt/marian-examples.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraeme Nail <graemenail.work@gmail.com>2022-02-23 12:48:00 +0300
committerGraeme Nail <graemenail.work@gmail.com>2022-02-23 12:48:00 +0300
commit97745d636ae65c4aef83bf311994b87efbc2c03a (patch)
treeddebb3f4867ca719b76eb0aad99f7e7d8a025414
parenta715e662d04bf8905d948658927aee057ac26347 (diff)
-j8 may be too much for some machines
-rw-r--r--transformer-intro/README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/transformer-intro/README.md b/transformer-intro/README.md
index b6e4893..4c8e0d6 100644
--- a/transformer-intro/README.md
+++ b/transformer-intro/README.md
@@ -60,7 +60,9 @@ cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_SENTENCEPIECE=ON
cmake --build .
```
-To speed up compilation we can use ```cmake --build . -j 8``` to run 8 tasks simultaneously.
+To speed up compilation we can use ```cmake --build . -j 8``` to run 8 tasks
+simultaneously. You may need to reduce this based on your system CPU and
+available memory.
If it succeeded, running
```shell