OISEAU
A modern DGTD framework
Loading...
Searching...
No Matches
mdarray.hpp
1
// Copyright (C) 2025 Tiago V. L. Amorim (@tiagovla)
2
//
3
// This file is part of oiseau (https://github.com/tiagovla/oiseau)
4
//
5
// SPDX-License-Identifier: GPL-3.0-or-later
6
7
#pragma once
8
9
#if defined(__cpp_lib_mdspan)
10
#include <mdspan>
11
#else
12
#include <mdspan/mdspan.hpp>
13
14
#include "experimental/__p0009_bits/layout_stride.hpp"
15
namespace
std {
16
using
Kokkos::dextents;
17
using
Kokkos::extents;
18
using
Kokkos::layout_right;
19
using
Kokkos::mdspan;
20
}
// namespace std
21
#endif
22
23
#include <experimental/__p1684_bits/mdarray.hpp>
24
namespace
stdex {
25
using
Kokkos::Experimental::mdarray;
26
27
}
// namespace stdex
src
oiseau
utils
mdarray.hpp
Generated by
1.15.0