Skip to content

Commit 92e0575

Browse files
committed
[Tests] Minor naming fixes
1 parent 19cc2ff commit 92e0575

File tree

3 files changed

+27
-27
lines changed

3 files changed

+27
-27
lines changed

cubool/tests/test_vector_mxv.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,47 +69,47 @@ void testRun(cuBool_Index m, cuBool_Index n, cuBool_Hints setup) {
6969
ASSERT_EQ(cuBool_Finalize(), CUBOOL_STATUS_SUCCESS);
7070
}
7171

72-
TEST(cuBool_Matrix, MultiplyMatrixVectorSmall) {
72+
TEST(cuBool_Vector, MultiplyMatrixVectorSmall) {
7373
cuBool_Index m = 600, n = 800;
7474
testRun(m, n, CUBOOL_HINT_NO);
7575
}
7676

77-
TEST(cuBool_Matrix, MultiplyMatrixVectorMedium) {
77+
TEST(cuBool_Vector, MultiplyMatrixVectorMedium) {
7878
cuBool_Index m = 2500, n = 4000;
7979
testRun(m, n, CUBOOL_HINT_NO);
8080
}
8181

82-
TEST(cuBool_Matrix, MultiplyMatrixVectorLarge) {
82+
TEST(cuBool_Vector, MultiplyMatrixVectorLarge) {
8383
cuBool_Index m = 10000, n = 5000;
8484
testRun(m, n, CUBOOL_HINT_NO);
8585
}
8686

87-
TEST(cuBool_Matrix, MultiplyMatrixVectorSmallFallback) {
87+
TEST(cuBool_Vector, MultiplyMatrixVectorSmallFallback) {
8888
cuBool_Index m = 600, n = 800;
8989
testRun(m, n, CUBOOL_HINT_CPU_BACKEND);
9090
}
9191

92-
TEST(cuBool_Matrix, MultiplyMatrixVectorMediumFallback) {
92+
TEST(cuBool_Vector, MultiplyMatrixVectorMediumFallback) {
9393
cuBool_Index m = 2500, n = 4000;
9494
testRun(m, n, CUBOOL_HINT_CPU_BACKEND);
9595
}
9696

97-
TEST(cuBool_Matrix, MultiplyMatrixVectorLargeFallback) {
97+
TEST(cuBool_Vector, MultiplyMatrixVectorLargeFallback) {
9898
cuBool_Index m = 10000, n = 5000;
9999
testRun(m, n, CUBOOL_HINT_CPU_BACKEND);
100100
}
101101

102-
TEST(cuBool_Matrix, MultiplyMatrixVectorSmallManaged) {
102+
TEST(cuBool_Vector, MultiplyMatrixVectorSmallManaged) {
103103
cuBool_Index m = 600, n = 800;
104104
testRun(m, n, CUBOOL_HINT_GPU_MEM_MANAGED);
105105
}
106106

107-
TEST(cuBool_Matrix, MultiplyMatrixVectorMediumManaged) {
107+
TEST(cuBool_Vector, MultiplyMatrixVectorMediumManaged) {
108108
cuBool_Index m = 2500, n = 4000;
109109
testRun(m, n, CUBOOL_HINT_GPU_MEM_MANAGED);
110110
}
111111

112-
TEST(cuBool_Matrix, MultiplyMatrixVectorLargeManaged) {
112+
TEST(cuBool_Vector, MultiplyMatrixVectorLargeManaged) {
113113
cuBool_Index m = 10000, n = 5000;
114114
testRun(m, n, CUBOOL_HINT_GPU_MEM_MANAGED);
115115
}

cubool/tests/test_vector_sub_vector.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -61,55 +61,55 @@ void testRun(cuBool_Index m, float step, cuBool_Hints setup) {
6161
EXPECT_EQ(cuBool_Finalize(), CUBOOL_STATUS_SUCCESS);
6262
}
6363

64-
TEST(cuBool_Matrix, SubVectorExtractSmall) {
64+
TEST(cuBool_Vector, SubVectorExtractSmall) {
6565
cuBool_Index m = 10000;
6666
float step = 0.05f;
6767
testRun(m, step, CUBOOL_HINT_NO);
6868
}
6969

70-
TEST(cuBool_Matrix, SubVectorExtractMedium) {
70+
TEST(cuBool_Vector, SubVectorExtractMedium) {
7171
cuBool_Index m = 50000;
7272
float step = 0.05f;
7373
testRun(m, step, CUBOOL_HINT_NO);
7474
}
7575

76-
TEST(cuBool_Matrix, SubVectorExtractLarge) {
76+
TEST(cuBool_Vector, SubVectorExtractLarge) {
7777
cuBool_Index m = 100000;
7878
float step = 0.05f;
7979
testRun(m, step, CUBOOL_HINT_NO);
8080
}
8181

82-
TEST(cuBool_Matrix, SubVectorExtractSmallFallback) {
82+
TEST(cuBool_Vector, SubVectorExtractSmallFallback) {
8383
cuBool_Index m = 10000;
8484
float step = 0.05f;
8585
testRun(m, step, CUBOOL_HINT_CPU_BACKEND);
8686
}
8787

88-
TEST(cuBool_Matrix, SubVectorExtractMediumFallback) {
88+
TEST(cuBool_Vector, SubVectorExtractMediumFallback) {
8989
cuBool_Index m = 50000;
9090
float step = 0.05f;
9191
testRun(m, step, CUBOOL_HINT_CPU_BACKEND);
9292
}
9393

94-
TEST(cuBool_Matrix, SubVectorExtractLargeFallback) {
94+
TEST(cuBool_Vector, SubVectorExtractLargeFallback) {
9595
cuBool_Index m = 100000;
9696
float step = 0.05f;
9797
testRun(m, step, CUBOOL_HINT_CPU_BACKEND);
9898
}
9999

100-
TEST(cuBool_Matrix, SubVectorExtractSmallManaged) {
100+
TEST(cuBool_Vector, SubVectorExtractSmallManaged) {
101101
cuBool_Index m = 10000;
102102
float step = 0.05f;
103103
testRun(m, step, CUBOOL_HINT_GPU_MEM_MANAGED);
104104
}
105105

106-
TEST(cuBool_Matrix, SubVectorExtractMediumManaged) {
106+
TEST(cuBool_Vector, SubVectorExtractMediumManaged) {
107107
cuBool_Index m = 50000;
108108
float step = 0.05f;
109109
testRun(m, step, CUBOOL_HINT_GPU_MEM_MANAGED);
110110
}
111111

112-
TEST(cuBool_Matrix, SubVectorExtractLargeManaged) {
112+
TEST(cuBool_Vector, SubVectorExtractLargeManaged) {
113113
cuBool_Index m = 100000;
114114
float step = 0.05f;
115115
testRun(m, step, CUBOOL_HINT_GPU_MEM_MANAGED);

cubool/tests/test_vector_vxm.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,47 +69,47 @@ void testRun(cuBool_Index m, cuBool_Index n, cuBool_Hints setup) {
6969
ASSERT_EQ(cuBool_Finalize(), CUBOOL_STATUS_SUCCESS);
7070
}
7171

72-
TEST(cuBool_Matrix, MultiplyVectorMatrixSmall) {
72+
TEST(cuBool_Vector, MultiplyVectorMatrixSmall) {
7373
cuBool_Index m = 600, n = 800;
7474
testRun(m, n, CUBOOL_HINT_NO);
7575
}
7676

77-
TEST(cuBool_Matrix, MultiplyVectorMatrixMedium) {
77+
TEST(cuBool_Vector, MultiplyVectorMatrixMedium) {
7878
cuBool_Index m = 2500, n = 4000;
7979
testRun(m, n, CUBOOL_HINT_NO);
8080
}
8181

82-
TEST(cuBool_Matrix, MultiplyVectorMatrixLarge) {
82+
TEST(cuBool_Vector, MultiplyVectorMatrixLarge) {
8383
cuBool_Index m = 5000, n = 10000;
8484
testRun(m, n, CUBOOL_HINT_NO);
8585
}
8686

87-
TEST(cuBool_Matrix, MultiplyVectorMatrixSmallFallback) {
87+
TEST(cuBool_Vector, MultiplyVectorMatrixSmallFallback) {
8888
cuBool_Index m = 600, n = 800;
8989
testRun(m, n, CUBOOL_HINT_CPU_BACKEND);
9090
}
9191

92-
TEST(cuBool_Matrix, MultiplyVectorMatrixMediumFallback) {
92+
TEST(cuBool_Vector, MultiplyVectorMatrixMediumFallback) {
9393
cuBool_Index m = 2500, n = 4000;
9494
testRun(m, n, CUBOOL_HINT_CPU_BACKEND);
9595
}
9696

97-
TEST(cuBool_Matrix, MultiplyVectorMatrixLargeFallback) {
97+
TEST(cuBool_Vector, MultiplyVectorMatrixLargeFallback) {
9898
cuBool_Index m = 5000, n = 10000;
9999
testRun(m, n, CUBOOL_HINT_CPU_BACKEND);
100100
}
101101

102-
TEST(cuBool_Matrix, MultiplyVectorMatrixSmallManaged) {
102+
TEST(cuBool_Vector, MultiplyVectorMatrixSmallManaged) {
103103
cuBool_Index m = 600, n = 800;
104104
testRun(m, n, CUBOOL_HINT_GPU_MEM_MANAGED);
105105
}
106106

107-
TEST(cuBool_Matrix, MultiplyVectorMatrixMediumManaged) {
107+
TEST(cuBool_Vector, MultiplyVectorMatrixMediumManaged) {
108108
cuBool_Index m = 2500, n = 4000;
109109
testRun(m, n, CUBOOL_HINT_GPU_MEM_MANAGED);
110110
}
111111

112-
TEST(cuBool_Matrix, MultiplyVectorMatrixLargeManaged) {
112+
TEST(cuBool_Vector, MultiplyVectorMatrixLargeManaged) {
113113
cuBool_Index m = 5000, n = 10000;
114114
testRun(m, n, CUBOOL_HINT_GPU_MEM_MANAGED);
115115
}

0 commit comments

Comments
 (0)