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