Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add RandomAccessIteror member functions for MdspanRandomAccessIterator #271

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Check result of comparison in transposed.cpp
  • Loading branch information
masterleinad committed May 28, 2024
commit 7be40824104528dae3c3410b2ad135a3544b1df7
2 changes: 1 addition & 1 deletion tests/native/transposed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ namespace {
ASSERT_EQ(out.is_strided(), out_expected.is_strided());
if (out_expected.is_strided()) {
for (size_t r = 0; r < 2u; ++r) {
out.stride(r) == out_expected.stride(r);
ASSERT_EQ(out.stride(r), out_expected.stride(r));
}
}
}
Expand Down
Loading