-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ci images for Kokkos and Ginkgo (#8)
* Update ci images for Kokkos and Ginkgo * Disable build testing * Reduce compile time of ginkgo further * Use more cores for compiling ginkgo Co-authored-by: Frédéric Simonis <[email protected]> --------- Co-authored-by: Frédéric Simonis <[email protected]>
- Loading branch information
Showing
4 changed files
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
# Copy this file into /etc/profile.d/ | ||
|
||
export Ginkgo_DIR=/ginkgo/build | ||
|
||
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$Ginkgo_DIR/lib | ||
export CPATH=$CPATH:$Ginkgo_DIR/include |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# This script installs GINKGO | ||
VERSION=3.12.4 | ||
VERSION=1.8.0 | ||
|
||
wget -c https://github.com/ginkgo-project/ginkgo/archive/refs/heads/public_common_kernels.zip | ||
unzip public_common_kernels.zip && mv ginkgo-public_common_kernels ginkgo | ||
wget -c https://github.com/ginkgo-project/ginkgo/archive/refs/tags/v$VERSION.zip | ||
unzip v$VERSION.zip && mv ginkgo-$VERSION ginkgo | ||
cd ginkgo && mkdir build && cd build | ||
cmake .. && make | ||
cmake -DBUILD_TESTING="OFF" -DGINKGO_BUILD_EXAMPLES="OFF" -DGINKGO_BUILD_TESTS="OFF" .. && make -j 4 |