Skip to content

Commit a9027e4

Browse files
Apply suggestions from code review
Co-authored-by: Daniel Jünger <djuenger@nvidia.com>
1 parent 29f5d27 commit a9027e4

17 files changed

+21
-21
lines changed

tests/static_map/capacity_test.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include <catch2/catch_test_macros.hpp>
2020

21-
TEST_CASE("static_map capacity", "")
21+
TEST_CASE("static_map capacity test", "")
2222
{
2323
using Key = int32_t;
2424
using T = int32_t;

tests/static_map/custom_type_test.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ struct custom_key_equals {
9898
}
9999
};
100100

101-
TEMPLATE_TEST_CASE_SIG("static_map custom key and value type",
101+
TEMPLATE_TEST_CASE_SIG("static_map custom key and value type tests",
102102
"",
103103
((typename Key, typename Value), Key, Value),
104104
#if defined(CUCO_HAS_INDEPENDENT_THREADS) // Key type larger than 8B only supported for sm_70 and

tests/static_map/heterogeneous_lookup_test.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ struct custom_key_equal {
8282
}
8383
};
8484

85-
TEMPLATE_TEST_CASE_SIG("static_map heterogeneous lookup",
85+
TEMPLATE_TEST_CASE_SIG("static_map heterogeneous lookup tests",
8686
"",
8787
((typename T, int CGSize), T, CGSize),
8888
#if defined(CUCO_HAS_INDEPENDENT_THREADS) // Key type larger than 8B only supported for sm_70 and

tests/static_map/insert_or_assign_test.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ void test_insert_or_assign(Map& map, size_type num_keys)
7171
}
7272

7373
TEMPLATE_TEST_CASE_SIG(
74-
"static_map insert_or_assign",
74+
"static_map insert_or_assign tests",
7575
"",
7676
((typename Key, typename Value, cuco::test::probe_sequence Probe, int CGSize),
7777
Key,

tests/static_map/rehash_test.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
#include <catch2/catch_test_macros.hpp>
2424

25-
TEST_CASE("static_map rehash", "")
25+
TEST_CASE("static_map rehash test", "")
2626
{
2727
using key_type = int;
2828
using mapped_type = long;

tests/static_multimap/custom_pair_retrieve_test.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ void test_non_shmem_pair_retrieve(Map& map, std::size_t const num_pairs)
188188
}
189189

190190
TEMPLATE_TEST_CASE_SIG(
191-
"static_multimap non-shared-memory pair_retrieve",
191+
"static_multimap non-shared-memory pair_retrieve tests",
192192
"",
193193
((typename Key, typename Value, cuco::test::probe_sequence Probe), Key, Value, Probe),
194194
(int32_t, int32_t, cuco::test::probe_sequence::linear_probing),

tests/static_multimap/custom_type_test.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ void test_custom_key_value_type(Map& map, std::size_t num_pairs)
208208
}
209209
}
210210

211-
TEMPLATE_TEST_CASE_SIG("static_multimap user defined key and value type",
211+
TEMPLATE_TEST_CASE_SIG("static_multimap user defined key and value type tests",
212212
"",
213213
((cuco::test::probe_sequence Probe), Probe),
214214
(cuco::test::probe_sequence::linear_probing),

tests/static_multimap/heterogeneous_lookup_test.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ struct custom_key_equal {
8080
}
8181
};
8282

83-
TEMPLATE_TEST_CASE("static_multimap heterogeneous lookup",
83+
TEMPLATE_TEST_CASE("static_multimap heterogeneous lookup tests",
8484
"",
8585
#if defined(CUCO_HAS_INDEPENDENT_THREADS) // Key type larger than 8B only supported for sm_70 and
8686
// up

tests/static_multimap/pair_function_test.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ void test_pair_functions(Map& map, PairIt pair_begin, std::size_t num_pairs)
108108
}
109109

110110
TEMPLATE_TEST_CASE_SIG(
111-
"static_multimap pair functions",
111+
"static_multimap pair functions tests",
112112
"",
113113
((typename Key, typename Value, cuco::test::probe_sequence Probe), Key, Value, Probe),
114114
(int32_t, int32_t, cuco::test::probe_sequence::linear_probing),

tests/static_set/capacity_test.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include <catch2/catch_test_macros.hpp>
2020

21-
TEST_CASE("static_set capacity", "")
21+
TEST_CASE("static_set capacity test", "")
2222
{
2323
using Key = int32_t;
2424
using ProbeT = cuco::double_hashing<1, cuco::default_hash_function<Key>>;

0 commit comments

Comments
 (0)