[SYCL] Fix some SYCL tests

This commit is contained in:
Romain Biessy
2022-08-16 17:37:54 +00:00
committed by Rasmus Munk Larsen
parent 27367017bd
commit 2f7cce2dd5
4 changed files with 7 additions and 100 deletions

View File

@@ -94,12 +94,8 @@ template<typename DataType, typename dev_Selector> void sycl_computing_test_per_
auto sycl_device = Eigen::SyclDevice(&queueInterface);
test_tanh_sycl<DataType, RowMajor, int64_t>(sycl_device);
test_tanh_sycl<DataType, ColMajor, int64_t>(sycl_device);
// Sigmoid broke for SYCL as of 0b5873 because of missing functions in PacketMath.h.
// Disable the test for now.
#if 0
test_sigmoid_sycl<DataType, RowMajor, int64_t>(sycl_device);
test_sigmoid_sycl<DataType, ColMajor, int64_t>(sycl_device);
#endif
}
EIGEN_DECLARE_TEST(cxx11_tensor_math_sycl) {