// Copyright (c) 2015-16 Tom Deakin, Simon McIntosh-Smith, // University of Bristol HPC // // For full license terms please see the LICENSE file distributed with this // source code #pragma once #include #include #include #include #include #include "Stream.h" #define IMPLEMENTATION_STRING "Kokkos" template class KokkosStream : public Stream { protected: // Size of arrays int array_size; // Device side pointers to arrays typename Kokkos::View* d_a; typename Kokkos::View* d_b; typename Kokkos::View* d_c; typename Kokkos::View::HostMirror* hm_a; typename Kokkos::View::HostMirror* hm_b; typename Kokkos::View::HostMirror* hm_c; public: KokkosStream(const int, const int); ~KokkosStream(); virtual void copy() override; virtual void add() override; virtual void mul() override; virtual void triad() override; virtual void nstream() override; virtual T dot() override; virtual void init_arrays(T initA, T initB, T initC) override; virtual void read_arrays( std::vector& a, std::vector& b, std::vector& c) override; };