Skip to content

Commit

Permalink
CI: Update kokkos version
Browse files Browse the repository at this point in the history
  • Loading branch information
gdsjaar committed Jan 15, 2025
1 parent 48c3e8c commit 2e80e46
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions install-tpl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ if [ "$CGNS" == "YES" ] && [ "$HDF5" == "YES" ]
then
if [ "$FORCE" == "YES" ] || ! [ -e $INSTALL_PATH/lib/libcgns.${LD_EXT} ]
then
cgns_version="v4.4.0"
cgns_version="v4.5.0"
echo "${txtgrn}+++ CGNS ${cgns_version} ${txtrst}"
cd $ACCESS || exit
cd TPL/cgns || exit
Expand Down Expand Up @@ -763,7 +763,7 @@ if [ "$FMT" == "YES" ]
then
if [ "$FORCE" == "YES" ] || ! [ -e $INSTALL_PATH/include/fmt/core.h ]
then
fmt_version="11.0.2"
fmt_version="11.1.2"
echo "${txtgrn}+++ FMT ${fmt_version} ${txtrst}"
cd $ACCESS || exit
cd TPL/fmt || exit
Expand Down Expand Up @@ -806,15 +806,16 @@ if [ "$KOKKOS" == "YES" ]
then
if [ "$FORCE" == "YES" ] || ! [ -e $INSTALL_PATH/lib/libkokkoscore.${LD_EXT} ]
then
kokkos_version="3.6.00"
kokkos_version="4.5.01"
echo "${txtgrn}+++ KOKKOS${txtrst}"
cd $ACCESS || exit
cd TPL/kokkos || exit
if [ "$DOWNLOAD" == "YES" ]
then
echo "${txtgrn}+++ Downloading...${txtrst}"
rm -rf kokkos
wget --no-check-certificate https://github.com/kokkos/kokkos/archive/${kokkos_version}.tar.gz

wget --no-check-certificate https://github.com/kokkos/kokkos/releases/download/4.5.01/kokkos-${kokkos_version}.tar.gz
tar -zxf ${kokkos_version}.tar.gz
rm -f ${kokkos_version}.tar.gz
ln -s kokkos-${kokkos_version} kokkos
Expand Down Expand Up @@ -977,7 +978,7 @@ if [ "$CATCH2" == "YES" ]
then
if [ "$FORCE" == "YES" ] || ! [ -e $INSTALL_PATH/lib/libCatch2.a ]
then
catch2_version="v3.7.0"
catch2_version="v3.8.0"
echo "${txtgrn}+++ Catch2 ${catch2_version} ${txtrst}"
cd $ACCESS || exit
cd TPL/catch2 || exit
Expand Down

0 comments on commit 2e80e46

Please sign in to comment.