Skip to content

Commit

Permalink
Shylu/Tacho - fix the unit test failure described in #1935
Browse files Browse the repository at this point in the history
  wrong memory pool parameter setup.
  • Loading branch information
kyungjoo-kim committed Nov 6, 2017
1 parent 19f80d5 commit 6e2bd04
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ TEST( DenseMatrixView, memorypool ) {

Kokkos::MemoryPool<HostSpaceType> pool(typename HostSpaceType::memory_space(),
1024*sizeof(ValueType),
16*sizeof(ValueType),
1*sizeof(ValueType),
1024*sizeof(ValueType),
512*sizeof(ValueType));
1024*sizeof(ValueType));
allocateStorageByBlocks(H, pool);

DenseMatrixViewHostType A1;
Expand Down

0 comments on commit 6e2bd04

Please sign in to comment.