.. _program_listing_file_arrays.hpp: Program Listing for File arrays.hpp =================================== |exhale_lsh| :ref:`Return to documentation for file ` (``arrays.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp // *********************************************************************************** // Idefix MHD astrophysical code // Copyright(C) 2020-2022 Geoffroy R. J. Lesur // and other code contributors // Licensed under CeCILL 2.1 License, see COPYING for more information // *********************************************************************************** #ifndef ARRAYS_HPP_ #define ARRAYS_HPP_ #include "idefix.hpp" template using IdefixArray1D = Kokkos::View; template using IdefixArray2D = Kokkos::View; template using IdefixArray3D = Kokkos::View; template using IdefixArray4D = Kokkos::View; template using IdefixHostArray1D = Kokkos::View; template using IdefixHostArray2D = Kokkos::View; template using IdefixHostArray3D = Kokkos::View; template using IdefixHostArray4D = Kokkos::View; // Atomic arrays template using IdefixAtomicArray1D = Kokkos::View>; template using IdefixAtomicArray2D = Kokkos::View>; template using IdefixAtomicArray3D = Kokkos::View>; /* template using IdefixHostArray1D = Kokkos::View; template using IdefixHostArray2D = Kokkos::View; template using IdefixHostArray3D = Kokkos::View; template using IdefixHostArray4D = Kokkos::View; */ #endif // ARRAYS_HPP_