fixed: auto function parameters requires the concept-ts

use a regular template parameter instead
This commit is contained in:
Arne Morten Kvarving 2021-11-10 10:24:14 +01:00
parent 6f0b06715e
commit f27931c2e2

View File

@ -229,9 +229,9 @@ void initialize_vexcl(std::vector<cl::CommandQueue>& ctx, unsigned int platformI
OpmLog::info(out.str());
}
template <typename vexcl_matrix_type, typename vexcl_vector_type, unsigned int block_size>
template <typename vexcl_matrix_type, typename vexcl_vector_type, unsigned int block_size, typename AIJInfo>
void solve_vexcl(
const auto& A,
const AIJInfo& A,
const boost::property_tree::ptree prm,
const std::vector<cl::CommandQueue>& ctx,
double *b,