Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intgemm/types.h')
-rw-r--r--intgemm/types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/intgemm/types.h b/intgemm/types.h
index f6b083c..81b38af 100644
--- a/intgemm/types.h
+++ b/intgemm/types.h
@@ -58,11 +58,11 @@ typedef unsigned int Index;
// If you want to detect the CPU and dispatch yourself, here's what to use:
enum class CPUType {
UNSUPPORTED = 0,
- SSE2,
- SSSE3,
- AVX2,
- AVX512BW,
- AVX512VNNI
+ SSE2 = 1,
+ SSSE3 = 2,
+ AVX2 = 3,
+ AVX512BW = 4,
+ AVX512VNNI = 5
};
// Running CPU type. This is defined in intgemm.cc (as the dispatcher).