-
Notifications
You must be signed in to change notification settings - Fork 0
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
#1: Implement new benchmark #2
base: master
Are you sure you want to change the base?
Conversation
This is the output it will produce on 8 ranks and 20 iterations that is meant to be read in by a script:
|
) | ||
|
||
target_link_libraries(${SLOW_NODE_EXE} PUBLIC MPI::MPI_CXX) | ||
target_link_libraries(${SLOW_NODE_EXE} PUBLIC Kokkos::kokkoskernels) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had to change this line to link against my installed Trilinos:
target_link_libraries(${SLOW_NODE_EXE} PUBLIC KokkosKernels::kokkoskernels)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we need an option to switch between finding Trilinos and linking that way vs. directly using Kokkos kernels.
Fixes #1
I'm thinking about adding
MPI_Get_processor_name
in this or we could do it in a script instead.