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 42df9ef commit 5952e58Copy full SHA for 5952e58
cmake/arch.cmake
@@ -74,6 +74,9 @@ if (DYNAMIC_ARCH)
74
if (NOT NO_AVX512)
75
set(DYNAMIC_CORE ${DYNAMIC_CORE} SKYLAKEX)
76
endif ()
77
+ if (DYNAMIC_LIST)
78
+ set(DYNAMIC_CORE PRESCOTT ${DYNAMIC_LIST})
79
+ endif ()
80
81
82
if (NOT DYNAMIC_CORE)
cmake/system.cmake
@@ -187,6 +187,13 @@ if (DYNAMIC_ARCH)
187
188
189
190
+if (DYNAMIC_LIST)
191
+ set(CCOMMON_OPT "${CCOMMON_OPT} -DDYNAMIC_LIST")
192
+ foreach(DCORE ${DYNAMIC_LIST})
193
+ set(CCOMMON_OPT "${CCOMMON_OPT} -DDYN_${DCORE}")
194
+ endforeach ()
195
+endif ()
196
+
197
if (NO_LAPACK)
198
set(CCOMMON_OPT "${CCOMMON_OPT} -DNO_LAPACK")
199
#Disable LAPACK C interface
0 commit comments