Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MueLu: Update CMakeLists.txt for SpMV Performance Test #12930

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions packages/muelu/test/scaling/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -585,14 +585,14 @@ IF (${PACKAGE_NAME}_HAVE_TPETRA_SOLVER_STACK)

ENDIF()

IF (${PACKAGE_NAME}_ENABLE_Epetra AND Tpetra_INST_SERIAL)
TRIBITS_ADD_EXECUTABLE(
SpMVPerformance
SOURCES SpMVPerformance.cpp
COMM mpi
CATEGORIES PERFORMANCE
)
TRIBITS_ADD_EXECUTABLE(
SpMVPerformance
SOURCES SpMVPerformance.cpp
COMM mpi
CATEGORIES PERFORMANCE
)

IF(Tpetra_INST_SERIAL)
TRIBITS_ADD_TEST(
SpMVPerformance
NAME_POSTFIX "Tpetra"
Expand All @@ -614,7 +614,9 @@ IF (${PACKAGE_NAME}_ENABLE_Epetra AND Tpetra_INST_SERIAL)
RUN_SERIAL
CATEGORIES PERFORMANCE
)
ENDIF()

IF (${PACKAGE_NAME}_ENABLE_Epetra)
TRIBITS_ADD_TEST(
SpMVPerformance
NAME_POSTFIX "Epetra"
Expand Down
Loading