Support multiple contraction kernel types in TensorContractionThreadPool

This commit is contained in:
Eugene Zhulenev
2018-09-26 11:08:47 -07:00
parent 0a3356f4ec
commit 71cd3fbd6a
6 changed files with 484 additions and 20 deletions

View File

@@ -75,6 +75,10 @@ typedef unsigned __int64 uint64_t;
#include "libxsmm.h"
#endif
#if defined(EIGEN_USE_MKLDNN)
#include "mkldnn.h"
#endif
#ifdef EIGEN_USE_THREADS
#include "ThreadPool"
#endif
@@ -121,6 +125,7 @@ typedef unsigned __int64 uint64_t;
#include "src/Tensor/TensorArgMax.h"
#include "src/Tensor/TensorConcatenation.h"
#include "src/Tensor/TensorContractionMapper.h"
#include "src/Tensor/TensorContractionMkldnn.h"
#include "src/Tensor/TensorContractionBlocking.h"
#include "src/Tensor/TensorContraction.h"
#include "src/Tensor/TensorContractionThreadPool.h"