We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ef99e4 commit aea5f90Copy full SHA for aea5f90
experiments/README.md
@@ -14,8 +14,11 @@ Script parameters:
14
15
### Execute
16
```bash
17
-PARALLEL=16 # for example
18
-cat run_scripts_0511.sh | while read i; do printf "%q\n" "$i"; done | xargs --max-procs=${PARALLEL} -I CMD bash -c CMD
+# pwd: kubernetes-scheduler-simulator/experiments
+cd ..
19
+# pwd: kubernetes-scheduler-simulator
20
+cat run_scripts_0511.sh | while read i; do printf "%q\n" "$i"; done | xargs --max-procs=16 -I CMD bash -c CMD
21
+# "--max-procs=16" where 16 is the degree of PARALLEL suggested above
22
# bash run_scripts_0511.sh will run experiments sequentially
23
```
24
0 commit comments