File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ Multi-threading changes
7575
7676* Locks now automatically inhibit finalizers from running, to avoid deadlock ([ #38487 ] ).
7777* New function ` Base.Threads.foreach(f, channel::Channel) ` for multithreaded ` Channel ` consumption ([ #34543 ] ).
78+ * There is no longer a restriction on the number of threads ([ #36778 ] ).
7879
7980Build system changes
8081--------------------
Original file line number Diff line number Diff line change @@ -190,11 +190,9 @@ a master process to establish a connection before dying.
190190### [ ` JULIA_NUM_THREADS ` ] (@id JULIA_NUM_THREADS)
191191
192192An unsigned 64-bit integer (` uint64_t ` ) that sets the maximum number of threads
193- available to Julia. If ` $JULIA_NUM_THREADS ` exceeds the number of available
194- CPU threads (logical cores), then the number of threads is set to the number of CPU threads. If
195- ` $JULIA_NUM_THREADS ` is not positive or is not set, or if the number of CPU
196- threads cannot be determined through system calls, then the number of threads is
197- set to ` 1 ` .
193+ available to Julia. If ` $JULIA_NUM_THREADS ` is not positive or is not set, or if
194+ the number of CPU threads cannot be determined through system calls, then the number
195+ of threads is set to ` 1 ` .
198196
199197!!! note
200198
You can’t perform that action at this time.
0 commit comments