Skip to content

Commit 04612eb

Browse files
committed
upadte version string
1 parent 56eaafa commit 04612eb

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.18.1 FATAL_ERROR)
1111
#project(SuperLU_DIST C CXX CUDA)
1212
project(SuperLU_DIST C CXX)
1313
set(VERSION_MAJOR "8")
14-
set(VERSION_MINOR "0")
14+
set(VERSION_MINOR "1")
1515
set(VERSION_BugFix "0")
1616
set(PROJECT_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_BugFix})
1717

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SuperLU_DIST (version 8.0.0) <img align=center width="55" alt="superlu" src="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png">
1+
# SuperLU_DIST (version 8.1.0) <img align=center width="55" alt="superlu" src="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png">
22

33
[![Build Status](https://travis-ci.org/xiaoyeli/superlu_dist.svg?branch=master)](https://travis-ci.org/xiaoyeli/superlu_dist)
44
[Nightly tests](http://my.cdash.org/index.php?project=superlu_dist)
@@ -24,7 +24,7 @@ acceleration capabilities.
2424
Table of Contents
2525
=================
2626

27-
* [SuperLU_DIST (version 8.0.0) <a href="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png" target="_blank" rel="nofollow"><img align="center" width="55" alt="superlu" src="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png" style="max-width:100%;"></a>](#superlu_dist-version-80---)
27+
* [SuperLU_DIST (version 8.1.0) <a href="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png" target="_blank" rel="nofollow"><img align="center" width="55" alt="superlu" src="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png" style="max-width:100%;"></a>](#superlu_dist-version-81---)
2828
* [Directory structure of the source code](#directory-structure-of-the-source-code)
2929
* [Installation](#installation)
3030
* [Installation option 1: Using CMake build system.](#installation-option-1-using-cmake-build-system)
@@ -49,7 +49,7 @@ Table of Contents
4949

5050
Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
5151

52-
# SuperLU_DIST (version 8.0) <img align=center width="55" alt="superlu" src="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png">
52+
# SuperLU_DIST (version 8.1) <img align=center width="55" alt="superlu" src="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png">
5353

5454
[![Build Status](https://travis-ci.org/xiaoyeli/superlu_dist.svg?branch=master)](https://travis-ci.org/xiaoyeli/superlu_dist)
5555
[Nightly tests](http://my.cdash.org/index.php?project=superlu_dist)
@@ -538,4 +538,5 @@ October 5, 2021 Version 7.1.0
538538
October 18, 2021 Version 7.1.1
539539
December 12, 2021 Version 7.2.0
540540
May 22, 2022 Version 8.0.0
541+
July 5, 2022 Version 8.1.0
541542
```

SRC/pdgstrs.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ at the top-level directory.
1818
* -- Distributed SuperLU routine (version 6.1) --
1919
* Lawrence Berkeley National Lab, Univ. of California Berkeley.
2020
* October 15, 2008
21-
* September 18, 2018 version 6.0
22-
* February 8, 2019 version 6.1.1
21+
* September 18, 2018 version 6.0
22+
* February 8, 2019 version 6.1.1
23+
* July 5, 2022 version 8.1.0 improved GPU U-solve
2324
* </pre>
2425
*/
2526
#include <math.h>

SRC/s_c2cpp_GetHWPM.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ at the top-level directory.
1313
* \brief Get heavy-weight perfect matching (HWPM).
1414
*
1515
* <pre>
16-
* -- Distributed SuperLU routine (version 5.4) --
16+
* -- Distributed SuperLU routine (version 8.1.0) --
1717
* Lawrence Berkeley National Lab, Univ. of California Berkeley.
18-
* April 1, 2018
19-
* Modified: April 2, 2020
18+
* July 5, 2022
19+
* Modified:
2020
* </pre>
2121
*/
2222
#include <math.h>
2323
#include "superlu_sdefs.h"
2424
#include "superlu_ddefs.h"
25-
//#include "dHWPM_CombBLAS.hpp"
25+
//#include "dHWPM_CombBLAS.hpp" -- multiple definition
2626

2727
/*! \brief
2828
*

SRC/superlu_defs.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ at the top-level directory.
2828
* October 18, 2021 version 7.1.1
2929
* December 12, 2021 version 7.2.0
3030
* May 22, 2022 version 8.0.0
31+
* July 5, 2022 version 8.1.0
3132
* </pre>
3233
*/
3334

0 commit comments

Comments
 (0)