Skip to content

Commit

Permalink
kokkos#253: fix example and compilation test includes
Browse files Browse the repository at this point in the history
  • Loading branch information
nmm0 committed Apr 21, 2023
1 parent 49f2e90 commit 69eafa4
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion compilation_tests/ctest_extents_ctors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//@HEADER
#include "ctest_common.hpp"

#include <experimental/mdspan>
#include <mdspan.hpp>



Expand Down
2 changes: 1 addition & 1 deletion compilation_tests/ctest_extents_type_check.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//@HEADER
#include "ctest_common.hpp"

#include <experimental/mdspan>
#include <mdspan.hpp>


using E1 = md::extents<int32_t, md::dynamic_extent, 3>;
Expand Down
2 changes: 1 addition & 1 deletion compilation_tests/ctest_layout_convertible.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//@HEADER
#include "ctest_common.hpp"

#include <experimental/mdspan>
#include <mdspan.hpp>


struct NotARealLayout {
Expand Down
2 changes: 1 addition & 1 deletion compilation_tests/ctest_layout_type_check.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//@HEADER
#include "ctest_common.hpp"

#include <experimental/mdspan>
#include <mdspan.hpp>


using E1 = md::extents<int32_t, md::dynamic_extent, 3>;
Expand Down
2 changes: 1 addition & 1 deletion compilation_tests/ctest_mdspan_convertible.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//@HEADER
#include "ctest_common.hpp"

#include <experimental/mdspan>
#include <mdspan.hpp>

#include <type_traits>

Expand Down
2 changes: 1 addition & 1 deletion compilation_tests/ctest_no_unique_address.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//@HEADER
#include "ctest_common.hpp"

#include <experimental/mdspan>
#include <mdspan.hpp>

#include <type_traits>

Expand Down
2 changes: 1 addition & 1 deletion compilation_tests/ctest_standard_layout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//@HEADER
#include "ctest_common.hpp"

#include <experimental/mdspan>
#include <mdspan.hpp>

#include <type_traits>

Expand Down
2 changes: 1 addition & 1 deletion compilation_tests/ctest_trivially_copyable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//@HEADER
#include "ctest_common.hpp"

#include <experimental/mdspan>
#include <mdspan.hpp>

#include <type_traits>

Expand Down
2 changes: 1 addition & 1 deletion examples/aligned_accessor/aligned_accessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//@HEADER
#include <experimental/mdspan>
#include <mdspan.hpp>

// Just checking __cpp_lib_int_pow2 isn't enough for some GCC versions.
// The <bit> header exists, but std::has_single_bit does not.
Expand Down
2 changes: 1 addition & 1 deletion examples/dot_product/dot_product.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//@HEADER
#include <experimental/mdspan>
#include <mdspan.hpp>

#include <iostream>
#include <iomanip>
Expand Down
2 changes: 1 addition & 1 deletion examples/godbolt_starter/godbolt_starter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#if defined(_MDSPAN_USE_CLASS_TEMPLATE_ARGUMENT_DEDUCTION)
// https://godbolt.org/z/ehErvsTce
#include <experimental/mdspan>
#include <mdspan.hpp>
#include <iostream>


Expand Down
2 changes: 1 addition & 1 deletion examples/restrict_accessor/restrict_accessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//@HEADER
#include <experimental/mdspan>
#include <mdspan.hpp>

#include <cassert>
#include <chrono>
Expand Down
2 changes: 1 addition & 1 deletion examples/tiled_layout/simple_tiled_layout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//@HEADER
#include <experimental/mdspan>
#include <mdspan.hpp>

#include <cassert>
#include <iostream>
Expand Down

0 comments on commit 69eafa4

Please sign in to comment.