Skip to content
Closed
Changes from all commits
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
2 changes: 2 additions & 0 deletions tests/unit_tests/fn/test_fn_sid_neighbor_table.cu
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ namespace gridtools::fn {
return neighbor_table::neighbors(table, index);
}

#if defined(__NVCC__) && defined(__CUDACC_VER_MAJOR__) && (__CUDACC_VER_MAJOR__ == 12 && __CUDACC_VER_MINOR__ <= 8)
TEST(sid_neighbor_table, correctness_cuda) {
constexpr std::size_t num_elements = 3;
constexpr std::size_t num_neighbors = 2;
Expand Down Expand Up @@ -63,5 +64,6 @@ namespace gridtools::fn {
EXPECT_EQ(n20, 20);
EXPECT_EQ(n21, 21);
}
#endif
} // namespace
} // namespace gridtools::fn
Loading