Browse Source

Add workaround for LAPACK testsuite failures with the NVIDIA HPC compiler

tags/v0.3.15
Martin Kroeker GitHub 5 years ago
parent
commit
86c5a0013f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      kernel/power/KERNEL.POWER10

+ 5
- 0
kernel/power/KERNEL.POWER10 View File

@@ -169,8 +169,13 @@ ZROTKERNEL = zrot.c
#
SSCALKERNEL = sscal.c
DSCALKERNEL = dscal.c
ifeq ($(C_COMPILER), PGI)
CSCALKERNEL = ../arm/zscal.c
ZSCALKERNEL = ../arm/zscal.c
else
CSCALKERNEL = zscal.c
ZSCALKERNEL = zscal.c
endif
#
SSWAPKERNEL = sswap.c
DSWAPKERNEL = dswap.c


Loading…
Cancel
Save