Skip to content

Commit 41d0815

Browse files
committed
update namers
1 parent 69e7065 commit 41d0815

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/swar/BasicOperations.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static_assert(
6060

6161
static_assert(0b00000010000000110000010100000110 == 0x02'03'05'06);
6262

63-
TEST_CASE("Jamie's totally working exponentiation :D") {
63+
TEST_CASE("Expontiation with 8-bit lane width (overflow unsafe)") {
6464
using S = SWAR<8, u32>;
6565
constexpr auto base = S::fromLaneLiterals({2, 3, 5, 6});
6666
constexpr auto exponent = S::fromLaneLiterals({7, 4, 2, 3});
@@ -70,7 +70,7 @@ TEST_CASE("Jamie's totally working exponentiation :D") {
7070
CHECK(expected.value() == actual.value());
7171
}
7272

73-
TEST_CASE("Jamie's enhanced exponentiation test for different lane widths") {
73+
TEST_CASE("Expontiation with 16-bit lane width (overflow unsafe)") {
7474
using S = SWAR<16, u64>; // Change to 16-bit lane width
7575
constexpr auto base = S::fromLaneLiterals({10, 2, 7, 3});
7676
constexpr auto exponent = S::fromLaneLiterals({3, 5, 1, 4});

0 commit comments

Comments
 (0)