diff --git a/CMakeLists.txt b/CMakeLists.txt index 6917be02..014dc3bb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.18.1 FATAL_ERROR) #project(SuperLU_DIST C CXX CUDA) project(SuperLU_DIST C CXX) set(VERSION_MAJOR "9") -set(VERSION_MINOR "0") +set(VERSION_MINOR "1") set(VERSION_BugFix "0") set(PROJECT_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_BugFix}) diff --git a/PYTHON/pdbridge.c b/PYTHON/pdbridge.c index cf776f79..5d384dd2 100644 --- a/PYTHON/pdbridge.c +++ b/PYTHON/pdbridge.c @@ -11,14 +11,12 @@ at the top-level directory. /*! @file - * \brief Driver program for PDGSSVX example + * \brief The bridge routines for the Python interface * *
- * -- Distributed SuperLU routine (version 9.0) -- - * Lawrence Berkeley National Lab, Univ. of California Berkeley. - * November 1, 2007 - * December 6, 2018 - * AUgust 27, 2022 Add batch option + * -- Distributed SuperLU routine (version 9.1.0) -- + * Lawrence Berkeley National Lab + * November 10, 2024 **/ @@ -772,4 +770,4 @@ int count_swaps(int_t perm[], int n) { } } return swaps; -} \ No newline at end of file +} diff --git a/PYTHON/pdbridge.h b/PYTHON/pdbridge.h index 551f754f..e110bf63 100644 --- a/PYTHON/pdbridge.h +++ b/PYTHON/pdbridge.h @@ -10,17 +10,12 @@ at the top-level directory. */ /*! @file - * \brief Distributed SuperLU data types and function prototypes + * \brief Header file for the Python bridge routines * *
- * -- Distributed SuperLU routine (version 9.0) -- - * Lawrence Berkeley National Lab, Univ. of California Berkeley, - * Georgia Institute of Technology - * November 1, 2007 - * April 5, 2015 - * September 18, 2018 version 6.0 - * February 8, 2019 version 6.1.1 - * May 10, 2019 version 7.0.0 + * -- Distributed SuperLU routine (version 9.1.0) -- + * Lawrence Berkeley National Lab + * November 10, 2024 **/ diff --git a/README.md b/README.md index b3bf2f49..c49bd126 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ acceleration capabilities. Table of Contents ================= -* [SuperLU_DIST (version 9.0.0)
- * -- Distributed SuperLU routine (version 9.0) -- + * -- Distributed SuperLU routine (version 9.1.0) -- * Lawrence Berkeley National Lab, Univ. of California Berkeley. * November 1, 2007 * @@ -34,6 +34,7 @@ at the top-level directory. * November 12, 2022 version 8.1.2 * November 17, 2023 version 8.2.1 * May 8, 2024 version 9.0.0 + * November 17, 2024 version 9.1.0 **/ @@ -87,9 +88,9 @@ at the top-level directory. * Versions 4.x and earlier do not include a #define'd version numbers. */ #define SUPERLU_DIST_MAJOR_VERSION 9 -#define SUPERLU_DIST_MINOR_VERSION 0 +#define SUPERLU_DIST_MINOR_VERSION 1 #define SUPERLU_DIST_PATCH_VERSION 0 -#define SUPERLU_DIST_RELEASE_DATE "May 8, 2024" +#define SUPERLU_DIST_RELEASE_DATE "November 10, 2024" #include "superlu_dist_config.h"