Skip to content

Commit 82084aa

Browse files
Added clarification from author following query from AP.
1 parent c3de1af commit 82084aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/learning-paths/cross-platform/windowsperf_sampling_cpython_spe/windowsperf_sampling_cpython_spe_example_1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ start /affinity 2 cpython\PCbuild\arm64\python_d.exe -c 10**10**100
2424
```
2525

2626
{{% notice Note %}}
27-
The [start](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/start) command line `/affinity <hexaffinity>` applies the specified processor affinity mask (expressed as a hexadecimal number). In this example, decimal `2` is `0x02` or `0b0010`. This value denotes core number `1` as `1` is a first bit in the mask, where the mask is indexed from `0`.
27+
The [start](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/start) command line `/affinity <hexaffinity>` applies the specified processor affinity mask (expressed as a hexadecimal number). In this example, decimal `2` is `0x02` or `0b0010`. This value denotes core number `1` as `1` is a second bit in the mask, where the mask is indexed from `0`.
2828
{{% /notice %}}
2929

3030
You can use the Windows Task Manager to confirm that `python_d.exe` is running on CPU core 1.

0 commit comments

Comments
 (0)