Fix syntax (#7543)

Fix the syntax for running on non-sequential CPUs, which is done with commas. Also fix the syntax for running on sequential CPUs, which uses a "-".
This commit is contained in:
dathide
2021-12-15 19:45:58 -07:00
committed by GitHub
parent b286619266
commit b205ef3b38

View File

@@ -16,8 +16,8 @@
- Start a new process with affinity for multiple non-sequential CPUs: - Start a new process with affinity for multiple non-sequential CPUs:
`taskset --cpu-list {{cpu_id_1}} {{cpu_id_2}} {{cpu_id_3}}` `taskset --cpu-list {{cpu_id_1}},{{cpu_id_2}},{{cpu_id_3}}`
- Start a new process with affinity for CPUs 1 through 4: - Start a new process with affinity for CPUs 1 through 4:
`taskset --cpu-list {{cpu_id_1}},{{cpu_id_4}}` `taskset --cpu-list {{cpu_id_1}}-{{cpu_id_4}}`