Skip to content

Commit

Permalink
Increase memory requirements for failing tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Jan 31, 2025
1 parent 605368d commit 7c7162c
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions cpp/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,10 @@ if(BUILD_TESTS)
linalg/ternary_op.cu
linalg/transpose.cu
linalg/unary_op.cu
GPUS
1
PERCENT
50
)

ConfigureTest(
Expand All @@ -211,12 +215,19 @@ if(BUILD_TESTS)
sparse/spectral_matrix.cu
LIB
EXPLICIT_INSTANTIATE_ONLY
GPUS
1
PERCENT
50
)

ConfigureTest(NAME MATRIX_SELECT_TEST PATH matrix/select_k.cu LIB EXPLICIT_INSTANTIATE_ONLY)
ConfigureTest(
NAME MATRIX_SELECT_TEST PATH matrix/select_k.cu LIB EXPLICIT_INSTANTIATE_ONLY GPUS 1 PERCENT 50
)

ConfigureTest(
NAME MATRIX_SELECT_LARGE_TEST PATH matrix/select_large_k.cu LIB EXPLICIT_INSTANTIATE_ONLY
NAME MATRIX_SELECT_LARGE_TEST PATH matrix/select_large_k.cu LIB EXPLICIT_INSTANTIATE_ONLY GPUS
1 PERCENT 50
)

ConfigureTest(
Expand Down

0 comments on commit 7c7162c

Please sign in to comment.