Simplified includes

This commit is contained in:
Benoit Steiner 2016-11-30 20:21:18 -08:00
parent 7cd33df4ce
commit e633a8371f
3 changed files with 3 additions and 4 deletions

View File

@ -82,8 +82,6 @@ typedef unsigned __int64 uint64_t;
#endif #endif
#endif #endif
// tuple construction
#include "src/Tensor/TensorSyclTuple.h"
#include "src/Tensor/TensorMacros.h" #include "src/Tensor/TensorMacros.h"
#include "src/Tensor/TensorForwardDeclarations.h" #include "src/Tensor/TensorForwardDeclarations.h"
#include "src/Tensor/TensorMeta.h" #include "src/Tensor/TensorMeta.h"

View File

@ -47,6 +47,8 @@ template<typename T> struct GetType<false, T>{
} }
} }
// tuple construction
#include "TensorSyclTuple.h"
// counting number of leaf at compile time // counting number of leaf at compile time
#include "TensorSyclLeafCount.h" #include "TensorSyclLeafCount.h"

View File

@ -20,7 +20,6 @@
#ifndef UNSUPPORTED_EIGEN_CXX11_SRC_TENSOR_TENSORSYCL_TUPLE_HPP #ifndef UNSUPPORTED_EIGEN_CXX11_SRC_TENSOR_TENSORSYCL_TUPLE_HPP
#define UNSUPPORTED_EIGEN_CXX11_SRC_TENSOR_TENSORSYCL_TUPLE_HPP #define UNSUPPORTED_EIGEN_CXX11_SRC_TENSOR_TENSORSYCL_TUPLE_HPP
#ifdef EIGEN_USE_SYCL
namespace utility { namespace utility {
namespace tuple { namespace tuple {
@ -233,5 +232,5 @@ Tuple<Args1..., Args2...> append(Tuple<Args1...> t1,Tuple<Args2...> t2) {
} }
} // tuple } // tuple
} // utility } // utility
#endif //EIGEN_USE_SYCL
#endif // UNSUPPORTED_EIGEN_CXX11_SRC_TENSOR_TENSORSYCL_TUPLE_HPP #endif // UNSUPPORTED_EIGEN_CXX11_SRC_TENSOR_TENSORSYCL_TUPLE_HPP