diff options
author | slaren <slarengh@gmail.com> | 2024-04-12 18:13:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-12 18:13:20 +0200 |
commit | fbbc030ba93561fac842af994c5c6c4c1147f13b (patch) | |
tree | a9a64e96f6e7703a0d161dd994030b66fb8eed45 /tests/test-backend-ops.cpp | |
parent | 4cc120c7443cf9dab898736f3c3b45dc8f14672b (diff) |
metal : unify mul_mv_id kernels (#6556)
Diffstat (limited to 'tests/test-backend-ops.cpp')
-rw-r--r-- | tests/test-backend-ops.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-backend-ops.cpp b/tests/test-backend-ops.cpp index 51b3487b..b5067595 100644 --- a/tests/test-backend-ops.cpp +++ b/tests/test-backend-ops.cpp @@ -2014,6 +2014,7 @@ static bool test_backend(ggml_backend_t backend, test_mode mode, const char * op for (int n_mats : {2, 4, 8}) { for (int id = 0; id < n_mats; id++) { for (bool v : {false, true}) { + test_cases.emplace_back(new test_mul_mat_id(type_a, type_b, n_mats, id, 16, 1, 256, v)); test_cases.emplace_back(new test_mul_mat_id(type_a, type_b, n_mats, id, 16, 16, 256, v)); } } |