// Copyright (c) 2020 Tom Deakin // University of Bristol HPC // // For full license terms please see the LICENSE file distributed with this // source code #include "STDRangesStream.hpp" #include #ifndef ALIGNMENT #define ALIGNMENT (2*1024*1024) // 2MB #endif template STDRangesStream::STDRangesStream(const int ARRAY_SIZE, int device) noexcept : array_size{ARRAY_SIZE}, a(alloc_raw(ARRAY_SIZE)), b(alloc_raw(ARRAY_SIZE)), c(alloc_raw(ARRAY_SIZE)) { std::cout << "Backing storage typeid: " << typeid(a).name() << std::endl; #ifdef USE_ONEDPL std::cout << "Using oneDPL backend: "; #if ONEDPL_USE_DPCPP_BACKEND std::cout << "SYCL USM (device=" << exe_policy.queue().get_device().get_info() << ")"; #elif ONEDPL_USE_TBB_BACKEND std::cout << "TBB " TBB_VERSION_STRING; #elif ONEDPL_USE_OPENMP_BACKEND std::cout << "OpenMP"; #else std::cout << "Default"; #endif std::cout << std::endl; #endif } template STDRangesStream::~STDRangesStream() { dealloc_raw(a); dealloc_raw(b); dealloc_raw(c); } template void STDRangesStream::init_arrays(T initA, T initB, T initC) { std::for_each_n( exe_policy, std::views::iota(0).begin(), array_size, // loop range [&] (int i) { a[i] = initA; b[i] = initB; c[i] = initC; } ); } template void STDRangesStream::read_arrays(std::vector& h_a, std::vector& h_b, std::vector& h_c) { // Element-wise copy. std::copy(a, a + array_size, h_a.begin()); std::copy(b, b + array_size, h_b.begin()); std::copy(c, c + array_size, h_c.begin()); } template void STDRangesStream::copy() { std::for_each_n( exe_policy, std::views::iota(0).begin(), array_size, [&] (int i) { c[i] = a[i]; } ); } template void STDRangesStream::mul() { const T scalar = startScalar; std::for_each_n( exe_policy, std::views::iota(0).begin(), array_size, [&] (int i) { b[i] = scalar * c[i]; } ); } template void STDRangesStream::add() { std::for_each_n( exe_policy, std::views::iota(0).begin(), array_size, [&] (int i) { c[i] = a[i] + b[i]; } ); } template void STDRangesStream::triad() { const T scalar = startScalar; std::for_each_n( exe_policy, std::views::iota(0).begin(), array_size, [&] (int i) { a[i] = b[i] + scalar * c[i]; } ); } template void STDRangesStream::nstream() { const T scalar = startScalar; std::for_each_n( exe_policy, std::views::iota(0).begin(), array_size, [&] (int i) { a[i] += b[i] + scalar * c[i]; } ); } template T STDRangesStream::dot() { // sum += a[i] * b[i]; return std::transform_reduce( exe_policy, a, a + array_size, b, T{}); } void listDevices(void) { std::cout << "C++20 does not expose devices" << std::endl; } std::string getDeviceName(const int) { return std::string("Device name unavailable"); } std::string getDeviceDriver(const int) { return std::string("Device driver unavailable"); } template class STDRangesStream; template class STDRangesStream;