File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,10 @@ function set_build_vars {
36
36
if [[ " $PLATFORM " == summit ]]; then
37
37
export CONDUIT=" ${CONDUIT:- ibv} "
38
38
export GPU_ARCH=volta
39
+ # Compiling TBLIS, a dependency of cuNumeric on PowerPC requires
40
+ # these defines to be set.
41
+ export CXXFLAGS=" ${CXXFLAGS:- } -DNO_WARN_X86_INTRINSICS"
42
+ export CCFLAGS=" ${CCFLAGS:- } -DNO_WARN_X86_INTRINSICS"
39
43
elif [[ " $PLATFORM " == cori ]]; then
40
44
export CONDUIT=" ${CONDUIT:- ibv} "
41
45
export GPU_ARCH=volta
@@ -48,6 +52,10 @@ function set_build_vars {
48
52
elif [[ " $PLATFORM " == lassen ]]; then
49
53
export CONDUIT=" ${CONDUIT:- ibv} "
50
54
export GPU_ARCH=volta
55
+ # Compiling TBLIS, a dependency of cuNumeric on PowerPC requires
56
+ # these defines to be set.
57
+ export CXXFLAGS=" ${CXXFLAGS:- } -DNO_WARN_X86_INTRINSICS"
58
+ export CCFLAGS=" ${CCFLAGS:- } -DNO_WARN_X86_INTRINSICS"
51
59
elif [[ " $PLATFORM " == generic-* ]]; then
52
60
export NETWORK=" ${NETWORK:- none} "
53
61
export CONDUIT=" ${CONDUIT:- none} "
You can’t perform that action at this time.
0 commit comments