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

github.com/marian-nmt/intgemm/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolay Bogoychev <nheart@gmail.com>2020-01-27 15:02:22 +0300
committerNikolay Bogoychev <nheart@gmail.com>2020-01-27 15:02:22 +0300
commit19ab51e88c64a7385ad9c2759fd201eef3930026 (patch)
tree4a3b3311e1955b88d55f77cedebdbb9508f9c122
parentdf77b4dc774fc148684f8790e08513c5aa458630 (diff)
Somehow, someway, this is hit on MacOS when requesting explicit avx512vnni 8bit.
-rw-r--r--intgemm.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/intgemm.h b/intgemm.h
index 5e85d6e..a08c1cc 100644
--- a/intgemm.h
+++ b/intgemm.h
@@ -83,6 +83,9 @@ struct Unsupported_8bit {
static void QuantizeU(const float *, uint8_t *, float, Index) {
throw UnsupportedCPU();
}
+ static void PrepareA(const float *, int8_t *, float, Index, Index) {
+ throw UnsupportedCPU();
+ }
static void PrepareB(const float *, int8_t *, float, Index, Index) {
throw UnsupportedCPU();
}