Skip to content

Commit 22aa401

Browse files
authored
Temporarily disable the AVX512 CASUM/ZASUM microkernels for any version of NVIDIA HPC (#4327)
* Temporarily disable the C/ZASUM microkernels for any version of NVHPC
1 parent df4cd7e commit 22aa401

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

kernel/x86_64/casum_microk_skylakex-2.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
#endif
55
#if ((( defined(__GNUC__) && __GNUC__ > 6 && defined(__AVX512CD__)) || (defined(__clang__) && (__clang_major__ >= 9 &&__clang_major__ !=17)) || ( defined(__NVCOMPILER) && NVCOMPVERS >= 2309)))
66

7-
#if (!(defined(__NVCOMPILER) && NVCOMPVERS < 2309))
7+
#if (!(defined(__NVCOMPILER) ))
8+
//&& NVCOMPVERS < 2309))
89

910
#define HAVE_CASUM_KERNEL 1
1011

kernel/x86_64/zasum_microk_skylakex-2.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
#endif
55
#if ((( defined(__GNUC__) && __GNUC__ > 6 && defined(__AVX512CD__)) || (defined(__clang__) && ( __clang_major__ >= 9 && __clang_major__ != 17)) || (defined(__NVCOMPILER) && NVCOMPVERS >= 2309)))
66

7-
#if (!(defined(__NVCOMPILER) && NVCOMPVERS < 2309))
7+
#if (!(defined(__NVCOMPILER) ))
8+
//&& NVCOMPVERS < 2309))
89

910
#define HAVE_ZASUM_KERNEL 1
1011

0 commit comments

Comments
 (0)