Skip to content

Commit 8064ef6

Browse files
authored
New tag release - 0.7.1 (#565)
* preps for new tag, 0.7.1 * Update README.md
1 parent 5916e15 commit 8064ef6

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Change Log
22
All notable changes to HiOp are documented in this file.
33

4+
## Version 0.7.1: Miscellaneous fixes to build system
5+
This minor release fixes a couple of issues found in the build system after the major release 0.7 of HiOp.
6+
47
## Version 0.7.0: Fortran interface and misc fixes and improvements:
58
- Fortran interface and examples
69
- Bug fixing for sparse device linear solvers

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if (POLICY CMP0074)
1111
cmake_policy(SET CMP0074 NEW)
1212
endif ()
1313

14-
project (hiop VERSION "0.7.0")
14+
project (hiop VERSION "0.7.1")
1515

1616
string(TIMESTAMP HIOP_RELEASE_DATE "%Y-%m-%d")
1717

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,12 @@ $> make install
9393
* *-DCMAKE_CXX_FLAGS="-O3"* will enable a high level of compiler code optimization
9494
9595
### Dependencies
96-
HiOp requires LAPACK and BLAS. These dependencies are automatically detected by the build system. MPI is optional and by default enabled. To disable use cmake option '-DHIOP_USE_MPI=OFF'.
9796
98-
HiOp has some support for NVIDIA **GPU-based computations** via CUDA and Magma. To enable the use of GPUs, use cmake with '-DHIOP_USE_GPU=ON'. The build system will automatically search for CUDA Toolkit. For non-standard CUDA Toolkit installations, use '-DHIOP_CUDA_LIB_DIR=/path' and '-DHIOP_CUDA_INCLUDE_DIR=/path'. For "very" non-standard CUDA Toolkit installations, one can specify the directory of cuBlas libraries as well with '-DHIOP_CUBLAS_LIB_DIR=/path'.
97+
A complete list of dependencies is maintained [here](https://github.com/spack/spack/blob/develop/var/spack/repos/builtin/packages/hiop/package.py).
98+
99+
For a minimal build, HiOp requires LAPACK and BLAS. These dependencies are automatically detected by the build system. MPI is optional and by default enabled. To disable use cmake option '-DHIOP_USE_MPI=OFF'.
100+
101+
HiOp has support for NVIDIA **GPU-based computations** via CUDA and Magma. To enable the use of GPUs, use cmake with '-DHIOP_USE_GPU=ON'. The build system will automatically search for CUDA Toolkit. For non-standard CUDA Toolkit installations, use '-DHIOP_CUDA_LIB_DIR=/path' and '-DHIOP_CUDA_INCLUDE_DIR=/path'. For "very" non-standard CUDA Toolkit installations, one can specify the directory of cuBlas libraries as well with '-DHIOP_CUBLAS_LIB_DIR=/path'.
99102
100103
### Using RAJA and Umpire portability libraries
101104

0 commit comments

Comments
 (0)