-
-
Notifications
You must be signed in to change notification settings - Fork 443
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6254 from STEllAR-GROUP/release-1.9.1
Preparing V1.9.1 release
- Loading branch information
Showing
1,003 changed files
with
7,559 additions
and
5,471 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
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,62 @@ | ||
# Copyright (c) 2023 The STE||AR-Group | ||
# | ||
# 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) | ||
|
||
name: Windows CI (Release, gcc/mingw toolset) | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: jwlawson/[email protected] | ||
with: | ||
cmake-version: '3.22.x' | ||
- name: Install dependencies | ||
run: | | ||
choco install ninja -y | ||
md C:\projects | ||
$client = new-object System.Net.WebClient | ||
$client.DownloadFile("https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.7z","C:\projects\boost_1_78_0.7z") | ||
7z x C:\projects\boost_1_78_0.7z -y -oC:\projects\boost | ||
cd C:\projects\boost\boost_1_78_0 | ||
.\bootstrap.bat gcc | ||
.\b2.exe ` | ||
link=shared ` | ||
variant=release ` | ||
architecture=x86 ` | ||
address-model=64 ` | ||
threading=multi ` | ||
--with-iostreams ` | ||
--build-type=complete ` | ||
install | ||
$client.DownloadFile("https://download.open-mpi.org/release/hwloc/v2.8/hwloc-win64-build-2.8.0.zip","C:\projects\hwloc-win64-build-2.8.0.zip") | ||
7z x C:\projects\hwloc-win64-build-2.8.0.zip -y -oC:\projects | ||
- name: Configure | ||
shell: bash | ||
run: | | ||
cmake . -Bbuild -G'Ninja' \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_CXX_COMPILER=g++ \ | ||
-DBOOST_ROOT="C:\Boost" \ | ||
-DHWLOC_ROOT="C:\projects\hwloc-win64-build-2.8.0" \ | ||
-DHPX_WITH_CXX_STANDARD=20 \ | ||
-DHPX_WITH_STATIC_LINKING=ON \ | ||
-DHPX_WITH_MALLOC=system \ | ||
-DHPX_WITH_FETCH_ASIO=ON \ | ||
-DHPX_WITH_PKGCONFIG=OFF \ | ||
-DHPX_WITH_TESTS_MAX_THREADS_PER_LOCALITY=2 \ | ||
-DHPX_WITH_EXAMPLES=ON \ | ||
-DHPX_WITH_TESTS=ON \ | ||
-DHPX_WITH_TESTS_UNIT=ON \ | ||
-DHPX_WITH_DEPRECATION_WARNINGS=OFF \ | ||
-DHPX_WITH_MODULES_AS_STATIC_LIBRARIES=OFF | ||
- name: Build | ||
shell: bash | ||
run: | | ||
cmake --build build --config Release -- -j 2 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# 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/15 | ||
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" | ||
|
||
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_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# 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 gcc/13 | ||
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" | ||
|
||
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_DATAPAR_BACKEND=EVE" | ||
configure_extra_options+=" -DHPX_WITH_FETCH_EVE=ON" | ||
configure_extra_options+=" -DHPX_WITH_EVE_TAG=main" | ||
|
||
# The pwrapi library still needs to be set up properly on rostam | ||
# configure_extra_options+=" -DHPX_WITH_POWER_COUNTER=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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# 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) | ||
|
||
configuration_slurm_partition="jenkins-compute" | ||
configuration_slurm_num_nodes="1" |
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,8 @@ | ||
# 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) | ||
|
||
configuration_slurm_partition="jenkins-compute" | ||
configuration_slurm_num_nodes="1" |
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
Oops, something went wrong.