Skip to content

Commit 86c5a00

Browse files
authored
Add workaround for LAPACK testsuite failures with the NVIDIA HPC compiler
1 parent ef85c22 commit 86c5a00

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

kernel/power/KERNEL.POWER10

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,13 @@ ZROTKERNEL = zrot.c
169169
#
170170
SSCALKERNEL = sscal.c
171171
DSCALKERNEL = dscal.c
172+
ifeq ($(C_COMPILER), PGI)
173+
CSCALKERNEL = ../arm/zscal.c
174+
ZSCALKERNEL = ../arm/zscal.c
175+
else
172176
CSCALKERNEL = zscal.c
173177
ZSCALKERNEL = zscal.c
178+
endif
174179
#
175180
SSWAPKERNEL = sswap.c
176181
DSWAPKERNEL = dswap.c

0 commit comments

Comments
 (0)