-
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
Update summit build #14
base: main
Are you sure you want to change the base?
Conversation
#DIR_INSTALL=${INSTALL_ROOT}/octotiger | ||
|
||
if [[ ! -d ${DIR_SRC} ]]; then | ||
git clone https://github.com/STEllAR-GROUP/octotiger.git ${DIR_SRC} | ||
pushd ${DIR_SRC} | ||
git checkout master | ||
git submodule update --init --recursive |
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 stop checking out the testdata? This would require us to adapt all Jenkins CI pipelines to add this as an additional step (in addition to do this manually for all of our other builds).
DIR_SRC=${SOURCE_ROOT}/octotiger | ||
DIR_BUILD=${INSTALL_ROOT}/octotiger/build | ||
DIR_SRC=${SOURCE_ROOT}/octotiger-kokkos | ||
DIR_BUILD=${INSTALL_ROOT}/octotiger/build-kokkos |
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 don't particularly like this change (breaks some of my scripts and my own muscle memory :-) )
Is there a specific reason for it?
-DHPXKokkos_DIR=$INSTALL_ROOT/hpx-kokkos/install/${LIB_DIR_NAME}/cmake/HPXKokkos | ||
-DHPXKokkos_DIR=$INSTALL_ROOT/hpx-kokkos/install/${LIB_DIR_NAME}/cmake/HPXKokkos \ | ||
-DCMAKE_CXX_COMPILER="${OCT_CMAKE_CXX_COMPILER}" \ | ||
-DOCTOTIGER_WITH_GRIDDIM=16 |
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 seems like an error
-DOCTOTIGER_WITH_TESTS=ON \ | ||
-DOCTOTIGER_WITH_Vc=ON \ | ||
-DOCTOTIGER_WITH_TESTS=OFF \ | ||
-DOCTOTIGER_WITH_Vc=OFF \ |
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 would keep these on ON as we don't gain anything by turning it OFF yet (as some old methods still pull in Vc)
git checkout ${HPX_KOKKOS_VERSION} | ||
cd .. | ||
) |
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 should we remove this but not the opening parenthesis?
@@ -47,7 +47,6 @@ if [[ ! -d ${DIR_SRC} ]]; then | |||
cd hpx | |||
git checkout ${HPX_VERSION} | |||
cd .. | |||
) |
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 should we remove this but not the opening parenthesis?
No description provided.