Skip to content

Commit

Permalink
Release v2022.10.0 (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbeckingsale authored Dec 19, 2022
1 parent def14a6 commit 9510efd
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cmake_policy(SET CMP0025 NEW)
include(CMakeDependentOption)
include(CMakePackageConfigHelpers)

project(Chai LANGUAGES C CXX VERSION 2022.03.0)
project(Chai LANGUAGES C CXX VERSION 2022.10.0)
cmake_minimum_required(VERSION 3.14)

include(cmake/SetupChaiOptions.cmake)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CHAI v2022.03.0
# CHAI v2022.10.0

[![Azure Build Status](https://dev.azure.com/davidbeckingsale/CHAI/_apis/build/status/LLNL.CHAI?branchName=develop)](https://dev.azure.com/davidbeckingsale/CHAI/_build/latest?definitionId=2&branchName=develop)
[![Build Status](https://travis-ci.org/LLNL/CHAI.svg?branch=develop)](https://travis-ci.org/LLNL/CHAI)
Expand Down
2 changes: 1 addition & 1 deletion blt
Submodule blt updated 46 files
+1 −0 .gitignore
+2 −1 .gitlab-ci.yml
+1 −1 .gitlab/build_and_test.sh
+3 −2 .gitlab/build_quartz.yml
+26 −0 .gitlab/build_tioga.yml
+36 −1 RELEASE-NOTES.md
+21 −2 SetupBLT.cmake
+1 −1 azure-pipelines.yml
+156 −61 cmake/BLTMacros.cmake
+0 −1 cmake/BLTOptions.cmake
+164 −1 cmake/BLTPrivateMacros.cmake
+23 −89 cmake/SetupCompilerOptions.cmake
+73 −0 cmake/SetupCompilerStandards.cmake
+0 −27 cmake/thirdparty/FindROCm.cmake
+13 −2 cmake/thirdparty/SetupCUDA.cmake
+0 −39 cmake/thirdparty/SetupHCC.cmake
+8 −2 cmake/thirdparty/SetupHIP.cmake
+0 −8 cmake/thirdparty/SetupThirdParty.cmake
+23 −3 docs/api/target_properties.rst
+66 −1 docs/api/utility.rst
+0 −1 docs/tutorial/portable_compiler_flags.rst
+1 −1 docs/tutorial/third_party_libraries.rst
+6 −5 host-configs/llnl/blueos_3_ppc64le_ib_p9/clang@upstream_link_with_nvcc.cmake
+1 −1 host-configs/llnl/blueos_3_ppc64le_ib_p9/clang@upstream_nvcc_c++14-export-tpls.cmake
+2 −2 host-configs/llnl/blueos_3_ppc64le_ib_p9/clang@upstream_nvcc_c++17.cmake
+2 −2 host-configs/llnl/blueos_3_ppc64le_ib_p9/clang@upstream_nvcc_c++17_no_separable.cmake
+4 −2 host-configs/llnl/blueos_3_ppc64le_ib_p9/clang@upstream_nvcc_xlf.cmake
+1 −1 host-configs/llnl/blueos_3_ppc64le_ib_p9/[email protected]_nvcc.cmake
+43 −0 host-configs/llnl/toss_4_x86_64_ib/[email protected]_hip.cmake
+7 −5 host-configs/llnl/toss_4_x86_64_ib_cray/[email protected]_clang_hip.cmake
+12 −7 host-configs/llnl/toss_4_x86_64_ib_cray/[email protected]_clang_hip_c++17.cmake
+65 −0 host-configs/llnl/toss_4_x86_64_ib_cray/[email protected]_hip.cmake
+9 −7 host-configs/llnl/toss_4_x86_64_ib_cray/[email protected]_hip.cmake
+0 −71 host-configs/other/hcc.cmake
+38 −0 host-configs/other/radiuss-aws-ec2.cmake
+78 −0 scripts/make_local_branch_from_fork_pr.sh
+25 −5 tests/internal/CMakeLists.txt
+26 −3 tests/internal/unit/CMakeLists.txt
+0 −24 tests/smoke/CMakeLists.txt
+0 −47 tests/smoke/blt_hcc_runtime_smoke.cpp
+0 −29 tests/smoke/blt_hcc_smoke.cpp
+4 −1 tests/smoke/blt_hip_gtest_smoke.cpp
+9 −2 tests/smoke/blt_hip_runtime_smoke.cpp
+4 −1 tests/smoke/blt_hip_smoke.cpp
+1 −1 thirdparty_builtin/googletest-master-2020-01-07/googlemock/CMakeLists.txt
+1 −1 thirdparty_builtin/googletest-master-2020-01-07/googletest/CMakeLists.txt
4 changes: 2 additions & 2 deletions docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = u'2022.03'
version = u'2022.10'
# The full version, including alpha/beta/rc tags.
release = u'2022.03.0'
release = u'2022.10.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/sphinx/conf.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ author = u''
# built documents.
#
# The short X.Y version.
version = u'2022.03'
version = u'2022.10'
# The full version, including alpha/beta/rc tags.
release = u'2022.03.0'
release = u'2022.10.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion scripts/make_release_tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
##############################################################################

TAR_CMD=gtar
VERSION=2022.03.0
VERSION=2022.10.0

git archive --prefix=chai-${VERSION}/ -o chai-${VERSION}.tar HEAD 2> /dev/null

Expand Down
2 changes: 1 addition & 1 deletion src/tpl/umpire
Submodule umpire updated 267 files

0 comments on commit 9510efd

Please sign in to comment.