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 efb059a commit 531acddCopy full SHA for 531acdd
cmake/FindHipoDeps.cmake
@@ -24,9 +24,14 @@ if (BUILD_OPENBLAS)
24
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
25
message(STATUS "ARM architecture detected. 32bit.")
26
# list(APPEND OPENBLAS_MINIMAL_FLAGS -DARMV7:BOOL=ON)
27
+ # Set environment variable to disable assembly
28
+ set(ENV{NOASM} "1")
29
+
30
list(APPEND OPENBLAS_MINIMAL_FLAGS
- -DTARGET=ARMV7
- -DBINARY=32
31
+ -DTARGET=GENERIC
32
+ -DBINARY=32
33
+ -DDYNAMIC_ARCH:BOOL=OFF
34
+ -DUSE_THREAD:BOOL=OFF
35
# Aggressively disable complex operations
36
-DNO_CGEMM:BOOL=ON
37
-DNO_ZGEMM:BOOL=ON
0 commit comments