Skip to content

Commit

Permalink
[ci skip] Again
Browse files Browse the repository at this point in the history
  • Loading branch information
aprokop committed Dec 27, 2023
1 parent d97938b commit 869ce00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tstDetailsCrsGraphWrapperImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

#include "ArborX_EnableDeviceTypes.hpp" // ARBORX_DEVICE_TYPES
#include "ArborX_EnableViewComparison.hpp"
#include <ArborX_DetailsCrsGraphWrapperImpl.hpp> // exclusive_scan
#include <ArborX_DetailsKokkosExtStdAlgorithms.hpp>
#include <ArborX_DetailsCrsGraphWrapperImpl.hpp>
#include <ArborX_DetailsKokkosExtStdAlgorithms.hpp> // exclusive_scan
#include <ArborX_DetailsKokkosExtViewHelpers.hpp>
#include <ArborX_Predicates.hpp>
#include <ArborX_TraversalPolicy.hpp>
Expand Down
1 change: 1 addition & 0 deletions test/tstDetailsKokkosExtStdAlgorithms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(exclusive_scan, DeviceType, ARBORX_DEVICE_TYPES)
v_host(1) = 1.;
v_host(2) = 0.;
Kokkos::deep_copy(v, v_host);
// in-place with init value
KokkosExt::exclusive_scan(space, v, v, 5.);
Kokkos::deep_copy(v_host, v);
std::vector<double> v_ref = {5., 6., 7.};
Expand Down

0 comments on commit 869ce00

Please sign in to comment.