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

avx512.h « kernels - github.com/marian-nmt/intgemm/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52af2b78ad93ea9b49ea00864f625799b14fb767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include "config.h"

#ifdef INTGEMM_COMPILER_SUPPORTS_AVX512

#define THIS_IS_AVX512BW
#include "kernels/implementations.inl"
#undef THIS_IS_AVX512BW

namespace intgemm {
namespace kernels {

// Put here kernels supported only by AVX512BW...

}
}

#endif