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 7d3502b commit 40cce0eCopy full SHA for 40cce0e
cmake/fc.cmake
@@ -44,7 +44,7 @@ endif ()
44
45
if (${F_COMPILER} STREQUAL "GFORTRAN")
46
set(CCOMMON_OPT "${CCOMMON_OPT} -DF_INTERFACE_GFORT")
47
- set(FCOMMON_OPT "${FCOMMON_OPT} -Wall")
+ set(FCOMMON_OPT "${FCOMMON_OPT} -Wall -frecursive")
48
#Don't include -lgfortran, when NO_LAPACK=1 or lsbcc
49
if (NOT NO_LAPACK)
50
set(EXTRALIB "{EXTRALIB} -lgfortran")
common.h
@@ -183,7 +183,7 @@ extern "C" {
183
184
#define ALLOCA_ALIGN 63UL
185
186
-#define NUM_BUFFERS (MAX_CPU_NUMBER * 2 * MAX_PARALLEL_NUMBER)
+#define NUM_BUFFERS MAX(64,(MAX_CPU_NUMBER * 2 * MAX_PARALLEL_NUMBER))
187
188
#ifdef NEEDBUNDERSCORE
189
#define BLASFUNC(FUNC) FUNC##_
0 commit comments