From 422530946f437b6cfb73a09d3932bc0f3ac8af80 Mon Sep 17 00:00:00 2001 From: Benoit Steiner Date: Fri, 30 Sep 2016 08:22:10 -0700 Subject: Renamed the SYCL tests to follow the standard naming convention. --- unsupported/test/cxx11_tensor_device_sycl.cpp | 39 +++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 unsupported/test/cxx11_tensor_device_sycl.cpp (limited to 'unsupported/test/cxx11_tensor_device_sycl.cpp') diff --git a/unsupported/test/cxx11_tensor_device_sycl.cpp b/unsupported/test/cxx11_tensor_device_sycl.cpp new file mode 100644 index 000000000..6bb39cf6a --- /dev/null +++ b/unsupported/test/cxx11_tensor_device_sycl.cpp @@ -0,0 +1,39 @@ +// This file is part of Eigen, a lightweight C++ template library +// for linear algebra. +// +// Copyright (C) 2016 +// Mehdi Goli Codeplay Software Ltd. +// Ralph Potter Codeplay Software Ltd. +// Luke Iwanski Codeplay Software Ltd. +// Contact: +// +// This Source Code Form is subject to the terms of the Mozilla +// Public License v. 2.0. If a copy of the MPL was not distributed +// with this file, You can obtain one at http://mozilla.org/MPL/2.0/. + +#define EIGEN_TEST_NO_LONGDOUBLE +#define EIGEN_TEST_NO_COMPLEX +#define EIGEN_TEST_FUNC cxx11_tensor_sycl_device +#define EIGEN_DEFAULT_DENSE_INDEX_TYPE int +#define EIGEN_USE_SYCL + +#include "main.h" +#include + +void test_sycl_device() { + cl::sycl::gpu_selector s; + cl::sycl::queue q(s, [=](cl::sycl::exception_list l) { + for (const auto& e : l) { + try { + std::rethrow_exception(e); + } catch (cl::sycl::exception e) { + std::cout << e.what() << std::endl; + } + } + }); + SyclDevice sycl_device(q); + printf("Helo from ComputeCpp: Device Exists\n"); +} +void test_cxx11_tensor_sycl_device() { + CALL_SUBTEST(test_sycl_device()); +} -- cgit v1.2.3