Skip to content

Commit 3fece6b

Browse files
authored
Fixed issue when not using Umpire. (#234)
1 parent 7eadcd0 commit 3fece6b

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cmake_minimum_required( VERSION 3.9 )
1010
# Set version number
1111
set( LVARRAY_VERSION_MAJOR 0 )
1212
set( LVARRAY_VERSION_MINOR 2 )
13-
set( LVARRAY_VERSION_PATCHLEVEL 0 )
13+
set( LVARRAY_VERSION_PATCHLEVEL 1 )
1414

1515
# check if LvArray is build as a submodule or a separate project
1616
get_directory_property( parent_dir PARENT_DIRECTORY )

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![DOI](https://zenodo.org/badge/132042682.svg)](https://zenodo.org/badge/latestdoi/132042682)
2+
13
# LvArray
24
Description
35
-----------
@@ -13,7 +15,6 @@ LvArray provides:
1315
All components of LvArray provide smart management of data motion between memory
1416
spaces on systems with hetergeneous memory (e.g. CPU/GPU) through lambda copy
1517
semantics in [RAJA](https://github.com/LLNL/RAJA), similar to the implementation of the [CHAI::ManagedArray](https://github.com/LLNL/CHAI)
16-
1718

1819
Documentation
1920
-------------

RELEASE_NOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ Version vxx.yy.zz -- Release date 20yy-mm-dd
99

1010
* Bug fixes:
1111

12+
Version v0.2.1 -- Release date 2020-05-06
13+
============================================
14+
15+
* Bug fixes:
16+
* Fixed an issue when building without Umpire.
17+
1218
Version v0.2.0 -- Release date 2020-05-05
1319
============================================
1420

src/CRSMatrixView.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ class CRSMatrixView : protected SparsityPatternView< COL_TYPE, INDEX_TYPE, BUFFE
369369
inline void zero() const
370370
{
371371
#if !defined( LVARRAY_USE_UMPIRE )
372-
LVARRAY_ERROR_IF_NE_MSG( getPreviousSpace(), MemorySpace::host, "Without Umpire only host memory is supported." );
372+
LVARRAY_ERROR_IF_NE_MSG( m_entries.getPreviousSpace(), MemorySpace::host, "Without Umpire only host memory is supported." );
373373
#endif
374374

375375
if( m_entries.capacity() > 0 )

0 commit comments

Comments
 (0)