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"
15namespace std {
16using Kokkos::dextents;
17using Kokkos::extents;
18using Kokkos::layout_right;
19using Kokkos::mdspan;
20} // namespace std
21#endif
22
23#include <experimental/__p1684_bits/mdarray.hpp>
24namespace stdex {
25using Kokkos::Experimental::mdarray;
26
27} // namespace stdex