1 #ifndef GEMMLOWP_TEST_TEST_DATA_H_ 2 #define GEMMLOWP_TEST_TEST_DATA_H_ 3 4 namespace test_data { 5 6 extern const bool is_a_transposed; 7 extern const bool is_b_transposed; 8 extern const bool is_c_transposed; 9 extern const int m; 10 extern const int n; 11 extern const int k; 12 extern const int a_offset; 13 extern const int b_offset; 14 extern const int c_shift; 15 extern const int c_mult_int; 16 extern const int c_shift; 17 extern const int c_offset; 18 19 extern const int a_count; 20 extern const int b_count; 21 extern const int c_count; 22 23 extern unsigned char a_data[]; 24 extern unsigned char b_data[]; 25 extern unsigned char expected_c_data[]; 26 27 } // namespace test_data 28 29 #endif // GEMMLOWP_TEST_TEST_DATA_H 30