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
path: root/test
diff options
context:
space:
mode:
authorMateusz Chudyk <mateuszchudyk@gmail.com>2020-02-06 22:39:06 +0300
committerGitHub <noreply@github.com>2020-02-06 22:39:06 +0300
commitebace9a4089535493afbaa0ec6ec7d8c366b66b3 (patch)
tree50914b713f6d1dc6149e36bd931bfdf608919b8b /test
parent54c84ff67061ccf07480bdb384f8b64211b083bd (diff)
parent54fbd22a490627266547202ed4a712d15001b4bf (diff)
Merge pull request #64 from kpu/quick-fix
Quick fix of PrepareBQuantizedTransposed test
Diffstat (limited to 'test')
-rw-r--r--test/prepare_b_quantized_transposed.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/prepare_b_quantized_transposed.cc b/test/prepare_b_quantized_transposed.cc
index a096c21..68c0a29 100644
--- a/test/prepare_b_quantized_transposed.cc
+++ b/test/prepare_b_quantized_transposed.cc
@@ -85,8 +85,8 @@ TEST_CASE("PrepareBQuantizedTransposed AVX2", "") {
if (kCPU < CPUType::AVX512BW)
return;
- CHECK(TestMany<AVX512_8bit>(32, 128));
- CHECK(TestMany<AVX512_16bit>(32, 128));
+ CHECK(TestMany<AVX512_8bit>(64, 128));
+ CHECK(TestMany<AVX512_16bit>(64, 128));
}
#endif