From e5b1519f455681ea743f8f82fa884967aa4ca08e Mon Sep 17 00:00:00 2001 From: Shintaro Iwasaki Date: Mon, 4 May 2020 06:23:45 -0500 Subject: [PATCH] CHANGES/version: update for 1.0 --- CHANGES.txt | 10 ++++++++++ runtime/CMakeLists.txt | 6 +++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index aead18885..a2e29d837 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,13 @@ +=============================================================================== + Changes in 1.0 +=============================================================================== + +- Upgraded to LLVM OpenMP 10.0 +- Upgraded Argobots to 1.0 +- Fixed support for untied tasks +- Added tests for OpenMP task and thread scheduling +- Support several platforms including OSX and POWER9. + =============================================================================== Changes in 1.0rc3 =============================================================================== diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index a06865b4d..28ee70175 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -367,9 +367,9 @@ endif() set(LIBOMP_LIB_FILE ${LIBOMP_LIB_NAME}${LIBOMP_LIBRARY_SUFFIX}) # Set BOLT version, release date, and build information -set(BOLT_VERSION "1.0rc3") -set(BOLT_NUMVERSION "10000203") -set(BOLT_RELEASE_DATE "Mon Nov 18 6:00:00 UTC 2019") +set(BOLT_VERSION "1.0") +set(BOLT_NUMVERSION "10000300") +set(BOLT_RELEASE_DATE "Tue May 5 6:00:00 UTC 2020") set(BOLT_COMPILER_CC ${CMAKE_C_COMPILER}) set(BOLT_COMPILER_CXX ${CMAKE_CXX_COMPILER}) if("${libomp_build_type_lowercase}" STREQUAL "release")