From 90f90adfc61b7bbfcfa97fbb210f92c8bb80e72b Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Mon, 24 Mar 2025 08:58:24 -0400 Subject: [PATCH] Provide more instantiations --- source/lac/la_parallel_vector.cc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/source/lac/la_parallel_vector.cc b/source/lac/la_parallel_vector.cc index df29605685..5a0da27290 100644 --- a/source/lac/la_parallel_vector.cc +++ b/source/lac/la_parallel_vector.cc @@ -87,6 +87,21 @@ namespace LinearAlgebra Vector::reinit( const Vector &, const bool); + + template float + Vector::inner_product_local( + const Vector &) const; + template double + Vector::inner_product_local( + const Vector &) const; + + template void + Vector::copy_locally_owned_data_from< + float>(const Vector &); + template void + Vector:: + copy_locally_owned_data_from( + const Vector &); #endif } // namespace distributed } // namespace LinearAlgebra -- 2.39.5