Merge pull request #3681 from akva2/vexcl_no_auto_func_param

fixed: auto function parameters requires the concept-ts
This commit is contained in:
Bård Skaflestad 2021-11-10 11:19:30 +01:00 committed by GitHub
commit 2bd5b30cda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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,