Skip to content
Snippets Groups Projects

Do not initializa Kokkos Arrays anymore

65 files
+ 2213
476
Compare changes
  • Side-by-side
  • Inline

Files

+ 2
2
@@ -9,10 +9,10 @@
struct BiCGStab
{
template <typename VectorType, typename MatrixType>
template <typename MatrixType, typename VectorType, typename RHSVectorType>
BiCGStab(const MatrixType& A,
VectorType& x,
const VectorType& b,
const RHSVectorType& b,
const double epsilon,
const size_t maximum_iteration,
const bool verbose)
Loading