Browse Source

Add workaround for NVIDIA HPC

tags/v0.3.14^2
Martin Kroeker GitHub 4 years ago
parent
commit
2efa3b70dc
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/arm64/KERNEL.THUNDERX

+ 5
- 0
kernel/arm64/KERNEL.THUNDERX View File

@@ -47,8 +47,13 @@ ZCOPYKERNEL = copy.S


SDOTKERNEL = dot_thunderx.c SDOTKERNEL = dot_thunderx.c
DDOTKERNEL = ddot_thunderx.c DDOTKERNEL = ddot_thunderx.c
ifneq ($(C_COMPILER), PGI)
CDOTKERNEL = zdot.S CDOTKERNEL = zdot.S
ZDOTKERNEL = zdot.S ZDOTKERNEL = zdot.S
else
CDOTKERNEL = ../arm/zdot.c
ZDOTKERNEL = ../arm/zdot.c
endif
DSDOTKERNEL = dot.S DSDOTKERNEL = dot.S


SNRM2KERNEL = nrm2.S SNRM2KERNEL = nrm2.S


Loading…
Cancel
Save