-
Notifications
You must be signed in to change notification settings - Fork 2
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
separate gpu and cpu workflows #39
Conversation
test/CMakeLists.txt
Outdated
@@ -17,6 +17,8 @@ target_link_libraries (xtest | |||
fruit | |||
) | |||
|
|||
message(STATUS "MPIEXEC_EXECUTABLE: ${MPIEXEC_EXECUTABLE}") |
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.
Let's delete this debug message.
build.sh
Outdated
-DCMAKE_C_FLAGS_DEBUG="-g3" \ | ||
-DCMAKE_CXX_FLAGS_DEBUG="-g3" ../ | ||
-DCMAKE_Fortran_FLAGS="-DHDF5_DOUBLE_PRESICION" \ | ||
../ |
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.
We want either separate build.sh files for gfortran
and nvfortran
or different FLAGS based on a input parameter?
.github/workflows/spack.yml
Outdated
@@ -1,5 +1,5 @@ | |||
name: spack | |||
on: [ push, workflow_dispatch ] | |||
# on: [ push, workflow_dispatch ] |
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.
Why is this commented out?
.github/workflows/olivine.yml
Outdated
on: | ||
issue_comment: | ||
types: [ created ] | ||
#on: { issue_comment: { types: [ created ] } } |
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.
Why is this commented out?
test/egyro/korc_egyro.sh
Outdated
@@ -11,7 +11,7 @@ OUT_DIR="egyro_test" | |||
mkdir -p $OUT_DIR | |||
|
|||
#assumes binary directory ../KORC/build/bin was added to path | |||
./xkorc $INPUT_FILE $OUT_DIR/ | |||
mpirun -np 1 ./xkorc $INPUT_FILE $OUT_DIR/ |
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.
This will be fixed by #37
test/mars/korc_mars.sh
Outdated
@@ -15,7 +15,7 @@ if [ ! -f D3D_191366_1762ms_MARS.h5 ]; then | |||
ln -s $1/D3D_191366_1762ms_MARS.h5 D3D_191366_1762ms_MARS.h5 | |||
fi | |||
|
|||
./xkorc $INPUT_FILE $OUT_DIR/ | |||
mpirun -np -1 ./xkorc $INPUT_FILE $OUT_DIR/ |
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.
This will be fixed by #37
No description provided.