Skip to content

Commit 5adefd9

Browse files
committed
Release 0.99.2
1 parent 012cf59 commit 5adefd9

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
cmake_minimum_required(VERSION 3.22)
1010

1111
# Adds version settings and set variable CMAKE_PROJECT_VERSION
12-
project(ReSolve VERSION "0.99.1")
12+
project(ReSolve VERSION "0.99.2")
1313

1414
set(CMAKE_CXX_STANDARD 11)
1515

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,8 @@ To change the install location please use the CMAkePresets.json file as
4848
mentioned in [test and deploy](#test-and-deploy)
4949

5050
To run it, download [test linear systems](https://github.com/NREL/opf_matrices/tree/master/acopf/activsg10k)
51-
and then edit script [`runResolve`](runResolve) to match locations of your
52-
linear systems and binary installation. The script will emulate nonlinear
53-
solver calling the linear solver repeatedly.
51+
and then try some of Re::Solve's [examples](https://github.com/ORNL/ReSolve/tree/develop/examples).
52+
The examples will emulate nonlinear solver calling the linear solver repeatedly.
5453

5554
### Create your own CMake configurations
5655

docs/sphinx/user_guide/index.rst

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It has following build dependencies:
1010
* CMake >= 3.22
1111
* KLU, AMD and COLAMD libraries from SuiteSparse >= 5.0 (optional)
1212
* CUDA >= 11.4 (optional)
13-
* HIP/ROCm >= 5.6 (optional)
13+
* HIP/ROCm >= 6.0 (optional)
1414

1515

1616
To acquire and build Re::Solve it is as easy as:
@@ -38,9 +38,8 @@ In the directory where you built the library run
3838
To change the install location please use the CMakePresets.json file as mentioned in `test and deploy <#test-and-deploy>`__
3939

4040
To run it, download `test linear systems <https://github.com/NREL/opf_matrices/tree/master/acopf/activsg10k>`__
41-
and then edit script |runResolve|_
42-
to match locations of your linear systems and binary installation.
43-
The script will emulate nonlinear solver calling the linear solver repeatedly.
41+
and then try some of Re::Solve's `examples <https://github.com/ORNL/ReSolve/tree/develop/examples>`_.
42+
The examples will emulate nonlinear solver calling the linear solver repeatedly.
4443

4544
To use the Re::Solve library in your own project
4645
----------------------------------------------
@@ -67,7 +66,7 @@ Below is an example CMakeList.txt file to use Re::Solve library in your project
6766
Test and Deploy
6867
---------------
6968

70-
Re::Solve as a library is tested every merge request via Gitlab pipelines
69+
Re::Solve as a library is tested every pull request via GitHub pipelines
7170
that execute various library tests including a test of Re::Solve being
7271
consumed as package within an external project as mentioned in `Using
7372
Re::Solve in your own
@@ -122,7 +121,7 @@ checkout the cmake
122121
`docs <https://cmake.org/cmake/help/latest/manual/cmake-presets.7.html>`__.
123122

124123
For example if you wanted to build and install Re::Solve on a High
125-
Performance Computing Cluster such as PNNL’s Deception or ORNL’s Ascent
124+
Performance Computing Cluster such as ORNL’s Frontier
126125
we encourage you to utilize our cluster preset. Using this preset will
127126
set CMAKE_INSTALL_PREFIX to an install folder. To use this preset simply
128127
call the preset flag in the cmake build step.

tests/functionality/testVersion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
int main()
2020
{
2121
using namespace ReSolve::colors;
22-
std::string answer("0.99.1");
22+
std::string answer("0.99.2");
2323
std::string versionstr;
2424
ReSolve::VersionGetVersionStr(versionstr);
2525
std::cout << "ReSolveVersionGetVersionStr Test: " << versionstr << std::endl

0 commit comments

Comments
 (0)