Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resolve/LinSolverIterativeRandFGMRES.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ namespace ReSolve
if (is_flexible) {
vec_Z_ = new vector_type(n_, restart_ + 1);
} else {
// otherwise Z is just a one vector, not multivector and we dont keep it
// otherwise Z is just one vector, not a multivector and we don't keep it
vec_Z_ = new vector_type(n_);
}
vec_Z_->allocate(memspace_);
Expand Down
2 changes: 1 addition & 1 deletion resolve/cpu/CpuMemory.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#pragma once

#include <cassert>
#include <resolve/utilities/logger/Logger.hpp>

namespace ReSolve
Expand Down
1 change: 0 additions & 1 deletion tests/functionality/testRandGmres.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ int runTest(int argc, char *argv[])
vector_type* vec_rhs = generateRhs(n, memspace);

vector_type vec_x(A->getNumRows());
vec_x.allocate(memory::HOST);
vec_x.allocate(memspace);
vec_x.setToZero(memspace);

Expand Down