Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tile_test.cc « test - github.com/marian-nmt/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2eb878a1fb5f7a12b45251730fd5945d3ff69024 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "../aligned.h"
#include "../tile/access.h"
#include "../tile/dot.h"
#include "../tile/reduce.h"
#include "test.h"

#include <random>

#ifdef INTGEMM_COMPILER_SUPPORTS_AVX512VNNI
#define INTGEMM_THIS_IS_AVX512VNNI
#include "tile_test.inl"
#undef INTGEMM_THIS_IS_AVX512VNNI
#endif

#ifdef INTGEMM_COMPILER_SUPPORTS_AVX512BW
#define INTGEMM_THIS_IS_AVX512BW
#include "tile_test.inl"
#undef INTGEMM_THIS_IS_AVX512BW
#endif

#define INTGEMM_THIS_IS_AVX2
#include "tile_test.inl"
#undef INTGEMM_THIS_IS_AVX2

#define INTGEMM_THIS_IS_SSSE3
#include "tile_test.inl"
#undef INTGEMM_THIS_IS_SSSE3