@@ -3919,7 +3919,7 @@ static const ggml_type other_types[] = {
39193919// Test cases for evaluation: should try to cover edge cases while using small input sizes to keep the runtime low
39203920static std::vector<std::unique_ptr<test_case>> make_test_cases_eval () {
39213921 std::vector<std::unique_ptr<test_case>> test_cases;
3922- [[maybe_unused]] std::default_random_engine rng (0 );
3922+ std::default_random_engine rng (0 );
39233923
39243924 // unary ops
39253925 for (ggml_type type : {GGML_TYPE_F16, GGML_TYPE_F32}) {
@@ -4242,8 +4242,6 @@ static std::vector<std::unique_ptr<test_case>> make_test_cases_eval() {
42424242 test_cases.emplace_back (new test_mul_mat (type_a, type_b, 16 , 16 , 256 , {2 , 3 }, {1 , 1 }, {0 , 1 , 3 , 2 }));
42434243 test_cases.emplace_back (new test_mul_mat (type_a, type_b, 16 , 16 , 256 , {2 , 3 }, {1 , 1 }, {0 , 3 , 2 , 1 }));
42444244
4245- test_cases.emplace_back (new test_mul_mat (type_a, type_b, 16 , 16 , 256 , {2 , 1 }, {1 , 1 }, {0 , 2 , 1 , 3 }));
4246-
42474245 // test cases with large ne00/ne10 to cover stream-k fixup
42484246 test_cases.emplace_back (new test_mul_mat (type_a, type_b, 16 , 1 , 1024 , {3 , 2 }, {1 , 1 }));
42494247 test_cases.emplace_back (new test_mul_mat (type_a, type_b, 16 , 8 , 1024 , {3 , 2 }, {1 , 1 }));
0 commit comments