I'm using a ISPC-based program on Windows and I'm wondering if there's any way to limit the number of CPU threads to 1 since I have to run some experiments.
Asked
Active
Viewed 168 times
1 Answers
1
You could use the SetProcessAffinityMask
(msdn link) API function:
BOOL SetProcessAffinityMask(
HANDLE hProcess,
DWORD_PTR dwProcessAffinityMask
);

alain
- 11,939
- 2
- 31
- 51