We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a06314b commit 5af40b1Copy full SHA for 5af40b1
deps/blas.mk
@@ -11,7 +11,10 @@ ifeq ($(OPENBLAS_USE_THREAD), 1)
11
OPENBLAS_BUILD_OPTS += USE_THREAD=1
12
OPENBLAS_BUILD_OPTS += GEMM_MULTITHREADING_THRESHOLD=50
13
# Maximum number of threads for parallelism
14
-ifneq ($(ARCH),x86_64)
+ifneq (, $(filter $(ARCH), powerpc64le ppc64le))
15
+# 196 cores is the biggest Power machine.
16
+OPENBLAS_BUILD_OPTS += NUM_THREADS=196
17
+else ifneq ($(ARCH),x86_64)
18
# Assume we can't address much memory to spawn many threads
19
# It is also unlikely that 32-bit architectures have too many cores
20
OPENBLAS_BUILD_OPTS += NUM_THREADS=8
0 commit comments