// 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_DEFAULT_DENSE_INDEX_TYPE int64_t #define EIGEN_USE_SYCL #include "main.h" #include using Eigen::array; using Eigen::SyclDevice; using Eigen::Tensor; using Eigen::TensorMap; template static void test_broadcast_sycl_fixed(const Eigen::SyclDevice& sycl_device) { // BROADCAST test: IndexType inDim1 = 2; IndexType inDim2 = 3; IndexType inDim3 = 5; IndexType inDim4 = 7; IndexType bDim1 = 2; IndexType bDim2 = 3; IndexType bDim3 = 1; IndexType bDim4 = 4; array in_range = {{inDim1, inDim2, inDim3, inDim4}}; array broadcasts = {{bDim1, bDim2, bDim3, bDim4}}; array out_range; // = in_range * broadcasts for (size_t i = 0; i < out_range.size(); ++i) out_range[i] = in_range[i] * broadcasts[i]; Tensor input(in_range); Tensor out(out_range); for (size_t i = 0; i < in_range.size(); ++i) VERIFY_IS_EQUAL(out.dimension(i), out_range[i]); for (IndexType i = 0; i < input.size(); ++i) input(i) = static_cast(i); DataType* gpu_in_data = static_cast(sycl_device.allocate(input.dimensions().TotalSize() * sizeof(DataType))); DataType* gpu_out_data = static_cast(sycl_device.allocate(out.dimensions().TotalSize() * sizeof(DataType))); TensorMap, DataLayout, IndexType>> gpu_in(gpu_in_data, in_range); TensorMap> gpu_out(gpu_out_data, out_range); sycl_device.memcpyHostToDevice(gpu_in_data, input.data(), (input.dimensions().TotalSize()) * sizeof(DataType)); gpu_out.device(sycl_device) = gpu_in.broadcast(broadcasts); sycl_device.memcpyDeviceToHost(out.data(), gpu_out_data, (out.dimensions().TotalSize()) * sizeof(DataType)); for (IndexType i = 0; i < inDim1 * bDim1; ++i) { for (IndexType j = 0; j < inDim2 * bDim2; ++j) { for (IndexType k = 0; k < inDim3 * bDim3; ++k) { for (IndexType l = 0; l < inDim4 * bDim4; ++l) { VERIFY_IS_APPROX(input(i % 2, j % 3, k % 5, l % 7), out(i, j, k, l)); } } } } printf("Broadcast Test with fixed size Passed\n"); sycl_device.deallocate(gpu_in_data); sycl_device.deallocate(gpu_out_data); } template static void test_broadcast_sycl(const Eigen::SyclDevice& sycl_device) { // BROADCAST test: IndexType inDim1 = 2; IndexType inDim2 = 3; IndexType inDim3 = 5; IndexType inDim4 = 7; IndexType bDim1 = 2; IndexType bDim2 = 3; IndexType bDim3 = 1; IndexType bDim4 = 4; array in_range = {{inDim1, inDim2, inDim3, inDim4}}; array broadcasts = {{bDim1, bDim2, bDim3, bDim4}}; array out_range; // = in_range * broadcasts for (size_t i = 0; i < out_range.size(); ++i) out_range[i] = in_range[i] * broadcasts[i]; Tensor input(in_range); Tensor out(out_range); for (size_t i = 0; i < in_range.size(); ++i) VERIFY_IS_EQUAL(out.dimension(i), out_range[i]); for (IndexType i = 0; i < input.size(); ++i) input(i) = static_cast(i); DataType* gpu_in_data = static_cast(sycl_device.allocate(input.dimensions().TotalSize() * sizeof(DataType))); DataType* gpu_out_data = static_cast(sycl_device.allocate(out.dimensions().TotalSize() * sizeof(DataType))); TensorMap> gpu_in(gpu_in_data, in_range); TensorMap> gpu_out(gpu_out_data, out_range); sycl_device.memcpyHostToDevice(gpu_in_data, input.data(), (input.dimensions().TotalSize()) * sizeof(DataType)); gpu_out.device(sycl_device) = gpu_in.broadcast(broadcasts); sycl_device.memcpyDeviceToHost(out.data(), gpu_out_data, (out.dimensions().TotalSize()) * sizeof(DataType)); for (IndexType i = 0; i < inDim1 * bDim1; ++i) { for (IndexType j = 0; j < inDim2 * bDim2; ++j) { for (IndexType k = 0; k < inDim3 * bDim3; ++k) { for (IndexType l = 0; l < inDim4 * bDim4; ++l) { VERIFY_IS_APPROX(input(i % inDim1, j % inDim2, k % inDim3, l % inDim4), out(i, j, k, l)); } } } } printf("Broadcast Test Passed\n"); sycl_device.deallocate(gpu_in_data); sycl_device.deallocate(gpu_out_data); } template void sycl_broadcast_test_per_device(const cl::sycl::device& d) { std::cout << "Running on " << d.template get_info() << std::endl; QueueInterface queueInterface(d); auto sycl_device = Eigen::SyclDevice(&queueInterface); test_broadcast_sycl(sycl_device); test_broadcast_sycl(sycl_device); test_broadcast_sycl_fixed(sycl_device); test_broadcast_sycl_fixed(sycl_device); } EIGEN_DECLARE_TEST(cxx11_tensor_broadcast_sycl) { for (const auto& device : Eigen::get_sycl_supported_devices()) { CALL_SUBTEST(sycl_broadcast_test_per_device(device)); CALL_SUBTEST(sycl_broadcast_test_per_device(device)); } }