Skip to content

Commit 8df99c1

Browse files
authored
Update execution.md
1 parent 2a39017 commit 8df99c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard-library/execution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace std::execution {
3333
3434
### Microsoft Specific
3535
36-
When `parallel_policy` or `parallel_unsequenced_policy` cause the algorithm to be parallelized, the parallel execution uses Windows Thread Pool. See [Thread Pools](https://docs.microsoft.com/en-us/windows/win32/procthread/thread-pools). Number of concurrent threads is limited to thread pool defaults (currently 500). Number of threads concurrently executing on hardware is currently limited by number of logical processor in the process's processor group. See [Processor Groups](https://docs.microsoft.com/en-us/windows/win32/procthread/processor-groups). Maximum number of chunks for data partitioning is also currently based on number of logical processor in the process's processor group.
36+
When `parallel_policy` or `parallel_unsequenced_policy` cause the algorithm to be parallelized, the parallel execution uses Windows Thread Pool. See [Thread Pools](https://docs.microsoft.com/en-us/windows/win32/procthread/thread-pools). Number of concurrent threads is limited to thread pool defaults (currently 500). Number of threads concurrently executing on hardware is currently limited by number of logical processor in the process's processor group, so effectively limited to 64. See [Processor Groups](https://docs.microsoft.com/en-us/windows/win32/procthread/processor-groups). Maximum number of chunks for data partitioning is also currently based on number of logical processor in the process's processor group.
3737
3838
## Requirements
3939

0 commit comments

Comments
 (0)