Skip to content

Commit

Permalink
fixes includes
Browse files Browse the repository at this point in the history
  • Loading branch information
elstehle committed Jan 14, 2025
1 parent 742f993 commit 681a2a4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions cub/test/catch2_radix_sort_helper.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
#include <thrust/sequence.h>

#include <cuda/std/bit>
#include <cuda/std/functional>

#include <array>
#include <climits>
Expand Down
2 changes: 1 addition & 1 deletion cub/test/catch2_segmented_sort_helper.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@

#include <cstdio>

#include "catch2_test_launch_helper.h"
#include <c2h/catch2_test_helper.h>
#include <c2h/cpu_timer.h>
#include <c2h/extended_types.h>
#include <c2h/utility.h>
#include <catch2_test_launch_helper.h>
#include <nv/target>

#define MAKE_SEED_MOD_FUNCTION(name, xor_mask) \
Expand Down
2 changes: 1 addition & 1 deletion cub/test/catch2_test_device_segmented_sort_keys.cu
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
#include <cub/device/device_segmented_sort.cuh>

#include "catch2_radix_sort_helper.cuh"
#include "catch2_segmented_sort_helper.cuh"
#include <c2h/catch2_test_helper.h>
#include <catch2_segmented_sort_helper.cuh>

// FIXME: Graph launch disabled, algorithm syncs internally. WAR exists for device-launch, figure out how to enable for
// graph launch.
Expand Down
2 changes: 1 addition & 1 deletion cub/test/catch2_test_device_segmented_sort_pairs.cu
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
#include "catch2_radix_sort_helper.cuh"
// above header needs to be included first

#include "catch2_segmented_sort_helper.cuh"
#include <c2h/catch2_test_helper.h>
#include <catch2_segmented_sort_helper.cuh>

// FIXME: Graph launch disabled, algorithm syncs internally. WAR exists for device-launch, figure out how to enable for
// graph launch.
Expand Down

0 comments on commit 681a2a4

Please sign in to comment.