-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathParallelProcessingToolsThreadPinningExt.jl
38 lines (28 loc) · 1.18 KB
/
ParallelProcessingToolsThreadPinningExt.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
module ParallelProcessingToolsThreadPinningExt
import ParallelProcessingTools
import LinearAlgebra
import Distributed
import ThreadPinning
# ThreadPinning.jl does not support all operating systems, currently:
const _threadpinning_supported = isdefined(ThreadPinning, :affinitymask2cpuids)
@static if _threadpinning_supported
function ParallelProcessingTools._pinthreads_auto_impl(::Val{true})
pid = Distributed.myid()
if Distributed.myid() == 1
@debug "On process $pid, leaving Julia threads unpinned"
let n_juliathreads = Threads.nthreads()
if n_juliathreads > 1
LinearAlgebra.BLAS.set_num_threads(n_juliathreads)
end
end
else
@debug "On process $pid, pinning threads according to affinity mask"
let available_cpus = ThreadPinning.affinitymask2cpuids(ThreadPinning.get_affinity_mask())
ThreadPinning.pinthreads(:affinitymask)
LinearAlgebra.BLAS.set_num_threads(length(available_cpus))
end
end
end
ParallelProcessingTools._getcpuids_impl(::Val{true}) = ThreadPinning.getcpuids()
end # if _threadpinning_supported
end # module ChangesOfVariablesInverseFunctionsExt