1*5f39d1b3SJooyung Han // Copyright 2016 The Gemmlowp Authors. All Rights Reserved. 2*5f39d1b3SJooyung Han // 3*5f39d1b3SJooyung Han // Licensed under the Apache License, Version 2.0 (the "License"); 4*5f39d1b3SJooyung Han // you may not use this file except in compliance with the License. 5*5f39d1b3SJooyung Han // You may obtain a copy of the License at 6*5f39d1b3SJooyung Han // 7*5f39d1b3SJooyung Han // http://www.apache.org/licenses/LICENSE-2.0 8*5f39d1b3SJooyung Han // 9*5f39d1b3SJooyung Han // Unless required by applicable law or agreed to in writing, software 10*5f39d1b3SJooyung Han // distributed under the License is distributed on an "AS IS" BASIS, 11*5f39d1b3SJooyung Han // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12*5f39d1b3SJooyung Han // See the License for the specific language governing permissions and 13*5f39d1b3SJooyung Han // limitations under the License. 14*5f39d1b3SJooyung Han 15*5f39d1b3SJooyung Han #ifndef GEMMLOWP_TEST_TEST_DATA_H_ 16*5f39d1b3SJooyung Han #define GEMMLOWP_TEST_TEST_DATA_H_ 17*5f39d1b3SJooyung Han 18*5f39d1b3SJooyung Han namespace test_data { 19*5f39d1b3SJooyung Han 20*5f39d1b3SJooyung Han extern const bool is_a_transposed; 21*5f39d1b3SJooyung Han extern const bool is_b_transposed; 22*5f39d1b3SJooyung Han extern const bool is_c_transposed; 23*5f39d1b3SJooyung Han extern const int m; 24*5f39d1b3SJooyung Han extern const int n; 25*5f39d1b3SJooyung Han extern const int k; 26*5f39d1b3SJooyung Han extern const int a_offset; 27*5f39d1b3SJooyung Han extern const int b_offset; 28*5f39d1b3SJooyung Han extern const int c_shift; 29*5f39d1b3SJooyung Han extern const int c_mult_int; 30*5f39d1b3SJooyung Han extern const int c_shift; 31*5f39d1b3SJooyung Han extern const int c_offset; 32*5f39d1b3SJooyung Han 33*5f39d1b3SJooyung Han extern const int a_count; 34*5f39d1b3SJooyung Han extern const int b_count; 35*5f39d1b3SJooyung Han extern const int c_count; 36*5f39d1b3SJooyung Han 37*5f39d1b3SJooyung Han extern unsigned char a_data[]; 38*5f39d1b3SJooyung Han extern unsigned char b_data[]; 39*5f39d1b3SJooyung Han extern unsigned char expected_c_data[]; 40*5f39d1b3SJooyung Han 41*5f39d1b3SJooyung Han } // namespace test_data 42*5f39d1b3SJooyung Han 43*5f39d1b3SJooyung Han #endif // GEMMLOWP_TEST_TEST_DATA_H 44