Skip to content

Commit

Permalink
Use size_t for array extents in viewcopy
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Feb 1, 2024
1 parent 4ccc3a9 commit 020a802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/viewcopy/viewcopy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <string_view>

constexpr auto repetitions = 20; // excluding 1 warmup run
constexpr auto extents = llama::ArrayExtents{512, 512, 16};
constexpr auto extents = llama::ArrayExtentsDynamic<std::size_t, 3>{512, 512, 16};
constexpr auto measureMemcpy = false;
constexpr auto runParallelVersions = true;
constexpr auto maxMismatchesPrintedPerFailedCopy = 10;
Expand Down

0 comments on commit 020a802

Please sign in to comment.