We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 208747f commit cbea88fCopy full SHA for cbea88f
tests/test-backend-ops.cpp
@@ -5288,6 +5288,12 @@ static std::vector<std::unique_ptr<test_case>> make_test_cases_eval() {
5288
test_cases.emplace_back(new test_mul_mat(GGML_TYPE_F16, GGML_TYPE_F32, 1056, 1, 193, {1, 1}, {4, 1}, {0, 2, 1, 3}));
5289
test_cases.emplace_back(new test_mul_mat(GGML_TYPE_F16, GGML_TYPE_F32, 1056, 1, 67, {1, 1}, {4, 1}, {0, 2, 1, 3}));
5290
5291
+ // XXX
5292
+ //test_cases.emplace_back(new test_mul_mat(GGML_TYPE_Q8_0, GGML_TYPE_F32, 151936, 256, 1024, {1, 1}, {1, 1}));
5293
+ test_cases.emplace_back(new test_mul_mat(GGML_TYPE_Q8_0, GGML_TYPE_F32, 128, 256, 1024, {1, 1}, {1, 1}));
5294
+ test_cases.emplace_back(new test_mul_mat(GGML_TYPE_Q8_0, GGML_TYPE_F32, 4096*8, 256, 1024, {1, 1}, {1, 1}));
5295
+ test_cases.emplace_back(new test_mul_mat(GGML_TYPE_Q8_0, GGML_TYPE_F32, 4096*16, 256, 1024, {1, 1}, {1, 1}));
5296
+
5297
for (auto bs : {1,2,4,8}) {
5298
for (auto nr : {1,4}) {
5299
for (uint32_t m = 0; m < 2; ++m) {
0 commit comments