Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.

Commit ca4c191

Browse files
authored
Merge pull request #1823 from senior-zero/fix-main/github/get_rid_of_extra_large_keys_tests
Reduce large keys test
2 parents 037be28 + f7eb0ed commit ca4c191

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

testing/stable_sort_large.cu

+1-14
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,9 @@ void _TestStableSortWithLargeKeys(void)
2424

2525
void TestStableSortWithLargeKeys(void)
2626
{
27-
_TestStableSortWithLargeKeys<int, 1>();
2827
_TestStableSortWithLargeKeys<int, 2>();
29-
_TestStableSortWithLargeKeys<int, 4>();
30-
_TestStableSortWithLargeKeys<int, 8>();
31-
_TestStableSortWithLargeKeys<int, 16>();
32-
_TestStableSortWithLargeKeys<int, 32>();
33-
_TestStableSortWithLargeKeys<int, 64>();
28+
_TestStableSortWithLargeKeys<int, 17>();
3429
_TestStableSortWithLargeKeys<int, 128>();
35-
_TestStableSortWithLargeKeys<int, 256>();
36-
37-
// XXX these take too long to compile
38-
// _TestStableSortWithLargeKeys<int, 512>();
39-
// _TestStableSortWithLargeKeys<int, 1024>();
40-
// _TestStableSortWithLargeKeys<int, 2048>();
41-
// _TestStableSortWithLargeKeys<int, 4096>();
42-
// _TestStableSortWithLargeKeys<int, 8192>();
4330
}
4431
DECLARE_UNITTEST(TestStableSortWithLargeKeys);
4532

0 commit comments

Comments
 (0)