Skip to content

Commit

Permalink
fix test naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyjmurray committed Jun 27, 2024
1 parent ea45625 commit 5fe8f87
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_matmul_wrappers/test_sketch_vector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -182,31 +182,31 @@ class TestSketchVector : public ::testing::Test
};


TEST_F(TestSketchVector, test_sketch_vec_tallSK)
TEST_F(TestSketchVector, sketch_vec_tallSK)
{
for (uint32_t seed : {0, 1, 2}) {
test_sketch_vec_tallSK<double>(seed, 1000, 100, 2, 3);
test_sketch_vec_tallSK<double>(seed, 1013, 101, 3, 2);
}
}

TEST_F(TestSketchVector, test_transpose_compatible)
TEST_F(TestSketchVector, transpose_compatible)
{
for (uint32_t seed : {0, 1, 2}) {
test_transpose_compatible<double>(seed, 100, 1000, 2, 3);
test_transpose_compatible<double>(seed, 101, 1013, 3, 2);
}
}

TEST_F(TestSketchVector, test_sketch_vec_wide)
TEST_F(TestSketchVector, sketch_vec_wide)
{
for (uint32_t seed : {0, 1, 2}) {
test_sketch_vec_wide<double>(seed, 100, 1000, 2, 3);
test_sketch_vec_wide<double>(seed, 101, 1013, 3, 2);
}
}

TEST_F(TestSketchVector, test_apply_transposed_to_vector)
TEST_F(TestSketchVector, apply_transposed_to_vector)
{
for (uint32_t seed : {0, 1, 2}) {
test_apply_transposed_to_vector<double>(seed, 100, 1000, 2, 3);
Expand Down

0 comments on commit 5fe8f87

Please sign in to comment.