-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use fewer processes while building OpenBLAS
Closes #15716
- Loading branch information
Showing
4 changed files
with
39 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
diff --git a/Makefile.system b/Makefile.system | ||
index b89f60e..2dbdad0 100644 | ||
--- a/Makefile.system | ||
+++ b/Makefile.system | ||
@@ -139,6 +139,10 @@ NO_PARALLEL_MAKE=0 | ||
endif | ||
GETARCH_FLAGS += -DNO_PARALLEL_MAKE=$(NO_PARALLEL_MAKE) | ||
|
||
+ifdef MAKE_NO_J | ||
+GETARCH_FLAGS += -DMAKE_NO_J=$(MAKE_NO_J) | ||
+endif | ||
+ | ||
ifdef MAKE_NB_JOBS | ||
GETARCH_FLAGS += -DMAKE_NB_JOBS=$(MAKE_NB_JOBS) | ||
endif | ||
diff --git a/getarch.c b/getarch.c | ||
index f9c49e6..dffad70 100644 | ||
--- a/getarch.c | ||
+++ b/getarch.c | ||
@@ -1012,6 +1012,7 @@ int main(int argc, char *argv[]){ | ||
#endif | ||
#endif | ||
|
||
+#ifndef MAKE_NO_J | ||
#ifdef MAKE_NB_JOBS | ||
printf("MAKE += -j %d\n", MAKE_NB_JOBS); | ||
#elif NO_PARALLEL_MAKE==1 | ||
@@ -1021,6 +1022,7 @@ int main(int argc, char *argv[]){ | ||
printf("MAKE += -j %d\n", get_num_cores()); | ||
#endif | ||
#endif | ||
+#endif | ||
|
||
break; | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
OPENBLAS_BRANCH=v0.2.15 | ||
OPENBLAS_SHA1=53e849f4fcae4363a64576de00e982722c7304f9 | ||
OPENBLAS_BRANCH=v0.2.17 | ||
OPENBLAS_SHA1=a71e8c82f6a9f73093b631e5deab1e8da716b61f |