mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Adding sycl backend for TensorPadding.h; disbaling __unit128 for sycl in TensorIntDiv.h; disabling cashsize for sycl in tensorDeviceDefault.h; adding sycl backend for StrideSliceOP ; removing sycl compiler warning for creating an array of size 0 in CXX11Meta.h; cleaning up the sycl backend code.
This commit is contained in:
@@ -49,6 +49,11 @@ struct numeric_list {
|
||||
static constexpr std::size_t count = sizeof...(nn);
|
||||
const T values[count] = {nn...};
|
||||
};
|
||||
template<typename T>
|
||||
struct numeric_list<T>{
|
||||
static constexpr std::size_t count = 0;
|
||||
//Array of size zero strictly forbiden in ISO C++
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user