mdspan
implementationThe ISO-C++ proposal P0009 will add support for non-owning multi-dimensional array references to the C++ standard library. This repository aims to provide a production-quality implementation of the proposal as written (with a few caveats, see below) in preparation for the addition of mdspan
to the standard. Please feel free to use this, file bugs when it breaks, and let us know how it works for you :-)
Try it out on Godbolt{: .btn }
During the final leg of the ISO C++ committee review process a number of breaking changes were proposed and accepted (issue #136). These are now merged into the stable branch.
Note: There is a tag mdspan-0.3.0 which reflects the status of P0009 before R17 - i.e. it does not have the integral type template parameter for extents
.
Note: There is a tag mdspan-0.4.0 which reflects the status of P0009 before
pointer
, data
, is_contiguous
and is_always_contiguous
; and beforesize_type
to index_type
and introducing a new size_type = make_unsigned_t<index_type>
alias.mdspan
A tutorial-style introduction to the basic usage of mdspan
is provided on the project wiki. More advanced tutorials to come.
__device__
marking of all functions for CUDA compatibilityKokkos::mdspan_non_standard
as the first argument.This implementation is header-only, with compiler features detected using feature test macros, so you can just use it directly with no building or installation. If you would like to run the included tests or benchmarks, you'll need CMake.
-Wall -Wextra -pedantic
for C++23/20. In C++17 pedantic will give a few warnings, in C++14 Wextra will also give some.cmake -DMDSPAN_ENABLE_TESTS=ON -DMDSPAN_ENABLE_BENCHMARKS=ON -DCMAKE_CXX_FLAGS="-Werror -Wall -Wextra -pedantic" -DCMAKE_CXX_STANDARD=23 -DMDSPAN_CXX_STANDARD=23 -DCMAKE_CXX_COMPILER=clang++
-Wall -Wextra -pedantic
for C++23/20. In C++17 and C++14 pedantic will give a warning (note only with CMAKE_CXX_EXTENSION=OFF
).cmake -DMDSPAN_ENABLE_TESTS=ON -DMDSPAN_ENABLE_BENCHMARKS=ON -DCMAKE_CXX_FLAGS="-Werror -Wall -Wextra -pedantic" -DCMAKE_CXX_STANDARD=17 -DMDSPAN_CXX_STANDARD=17 -DCMAKE_CXX_COMPILER=g++ -DCMAKE_CXX_EXTENSIONS=OFF
mdarray
due to the use of vector
as container for the tests.cmake -DMDSPAN_ENABLE_TESTS=ON -DMDSPAN_ENABLE_CUDA=ON -DMDSPAN_ENABLE_BENCHMARKS=ON -DCMAKE_CXX_STANDARD=17 -DCMAKE_CUDA_ARCHITECTURES=70 -DMDSPAN_CXX_STANDARD=17 -DCMAKE_CUDA_FLAGS="--expt-relaxed-constexpr --extended-lambda"
TODO write this
This implementation is fully conforming with the version of mdspan
voted into the C++23 draft standard in July 2022.
When not in C++23 mode the implementation deviates from the proposal as follows:
operator()
not operator[]
MDSPAN_USE_BRACKET_OPERATOR=[0,1]
and MDSPAN_USE_PAREN_OPERATOR=[0,1]
irrespective of whether multi dimensional subscript support is detected.layout_left::mapping::stride()
, layout_right::mapping::stride()
and layout_stride::mapping::stride()
that extents_type::rank() > 0
is true
, which is not implemented in C++17 or C++14.This work was undertaken as part of the Kokkos project at Sandia National Laboratories. Sandia National Laboratories is a multimission laboratory managed and operated by National Technology & Engineering Solutions of Sandia, LLC, a wholly owned subsidary of Honeywell International Inc., for the U. S. Department of Energy's National Nuclear Security Administration under contract DE-NA0003525.