-
-
Notifications
You must be signed in to change notification settings - Fork 439
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
6375: Update LSU Jenkins with 2023-10 libraries r=hkaiser a=akheir Adding new libraries to LSU Jenkins: - gcc/13.2 with boost 1.83 - llvm/17 with boost 1.83 - llvm/16 with boost 1.82 - gcc/13 + cuda 12 with boost 1.83 - gcc/12 + cuda 12 with boost 1.82 Co-authored-by: Alireza Kheirkhahan <[email protected]>
- Loading branch information
Showing
8 changed files
with
93 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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Copyright (c) 2020 ETH Zurich | ||
# | ||
# SPDX-License-Identifier: BSL-1.0 | ||
# Distributed under the Boost Software License, Version 1.0. (See accompanying | ||
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
|
||
module purge | ||
module load cmake | ||
module load llvm/16 | ||
module load boost/1.82.0-${build_type,,} | ||
module load hwloc | ||
module load openmpi | ||
module load pwrapi/1.1.1 | ||
|
||
export HPXRUN_RUNWRAPPER=srun | ||
export CXX_STD="20" | ||
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH | ||
|
||
configure_extra_options+=" -DCMAKE_BUILD_TYPE=${build_type}" | ||
configure_extra_options+=" -DHPX_WITH_CXX_STANDARD=${CXX_STD}" | ||
configure_extra_options+=" -DHPX_WITH_MALLOC=system" | ||
configure_extra_options+=" -DHPX_WITH_FETCH_ASIO=ON" | ||
configure_extra_options+=" -DHPX_WITH_COMPILER_WARNINGS=ON" | ||
configure_extra_options+=" -DHPX_WITH_COMPILER_WARNINGS_AS_ERRORS=ON" | ||
configure_extra_options+=" -DHPX_WITH_PARCELPORT_MPI=ON" | ||
configure_extra_options+=" -DHPX_WITH_PARCELPORT_LCI=ON" | ||
configure_extra_options+=" -DHPX_WITH_FETCH_LCI=ON" | ||
configure_extra_options+=" -DHPX_WITH_PARCELPORT_GASNET=ON" | ||
configure_extra_options+=" -DHPX_WITH_FETCH_GASNET=ON" | ||
configure_extra_options+=" -DCMAKE_C_COMPILER=clang" | ||
configure_extra_options+=" -DCMAKE_C_FLAGS=-fPIC" | ||
configure_extra_options+=" -DHPX_WITH_PARCELPORT_GASNET_CONDUIT=smp" | ||
configure_extra_options+=" -DHPX_WITH_LOGGING=OFF" | ||
configure_extra_options+=" -DHPX_WITH_DATAPAR_BACKEND=EVE" | ||
configure_extra_options+=" -DHPX_WITH_FETCH_EVE=ON" | ||
|
||
# The pwrapi library still needs to be set up properly on rostam | ||
# configure_extra_options+=" -DHPX_WITH_POWER_COUNTER=ON" | ||
|
||
# Make sure HWLOC does not report 'cores'. This is purely an option to enable | ||
# testing the topology code under conditions close to those on FreeBSD. | ||
configure_extra_options+=" -DHPX_TOPOLOGY_WITH_ADDITIONAL_HWLOC_TESTING=ON" |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Copyright (c) 2020 ETH Zurich | ||
# | ||
# SPDX-License-Identifier: BSL-1.0 | ||
# Distributed under the Boost Software License, Version 1.0. (See accompanying | ||
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
|
||
module purge | ||
module load cmake | ||
module load llvm/17 | ||
module load boost/1.83.0-${build_type,,} | ||
module load hwloc | ||
module load openmpi | ||
module load pwrapi/1.1.1 | ||
|
||
export HPXRUN_RUNWRAPPER=srun | ||
export CXX_STD="20" | ||
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH | ||
|
||
configure_extra_options+=" -DCMAKE_BUILD_TYPE=${build_type}" | ||
configure_extra_options+=" -DHPX_WITH_CXX_STANDARD=${CXX_STD}" | ||
configure_extra_options+=" -DHPX_WITH_MALLOC=system" | ||
configure_extra_options+=" -DHPX_WITH_FETCH_ASIO=ON" | ||
configure_extra_options+=" -DHPX_WITH_COMPILER_WARNINGS=ON" | ||
configure_extra_options+=" -DHPX_WITH_COMPILER_WARNINGS_AS_ERRORS=ON" | ||
configure_extra_options+=" -DHPX_WITH_PARCELPORT_MPI=ON" | ||
configure_extra_options+=" -DHPX_WITH_PARCELPORT_LCI=ON" | ||
configure_extra_options+=" -DHPX_WITH_FETCH_LCI=ON" | ||
configure_extra_options+=" -DHPX_WITH_PARCELPORT_GASNET=ON" | ||
configure_extra_options+=" -DHPX_WITH_FETCH_GASNET=ON" | ||
configure_extra_options+=" -DCMAKE_C_COMPILER=clang" | ||
configure_extra_options+=" -DCMAKE_C_FLAGS=-fPIC" | ||
configure_extra_options+=" -DHPX_WITH_PARCELPORT_GASNET_CONDUIT=smp" | ||
configure_extra_options+=" -DHPX_WITH_LOGGING=OFF" | ||
configure_extra_options+=" -DHPX_WITH_DATAPAR_BACKEND=EVE" | ||
configure_extra_options+=" -DHPX_WITH_FETCH_EVE=ON" | ||
|
||
# The pwrapi library still needs to be set up properly on rostam | ||
# configure_extra_options+=" -DHPX_WITH_POWER_COUNTER=ON" | ||
|
||
# Make sure HWLOC does not report 'cores'. This is purely an option to enable | ||
# testing the topology code under conditions close to those on FreeBSD. | ||
configure_extra_options+=" -DHPX_TOPOLOGY_WITH_ADDITIONAL_HWLOC_TESTING=ON" |
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
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