Skip to content
Snippets Groups Projects
Verified Commit 60314316 authored by Nils-Arne Dreier's avatar Nils-Arne Dreier
Browse files

add explicit instanciations to looptest to reduce compile time

parent 3c5922d7
Branches
Tags
1 merge request!784Loopsimd alignment (Remerge)
......@@ -14,6 +14,10 @@ namespace Dune {
#cmake @template POINT@
extern template void
UnitTest::check@POINT@<LoopSIMD<@SCALAR@, 5> >();
extern template void
UnitTest::check@POINT@<LoopSIMD<@SCALAR@, 5, 64> >();
extern template void
UnitTest::check@POINT@<LoopSIMD<LoopSIMD<@SCALAR@, 2>, 5> >();
#cmake @endtemplate@
} //namespace Simd
......
......@@ -8,6 +8,8 @@ namespace Dune {
namespace Simd {
template void UnitTest::check@POINT@<LoopSIMD<@SCALAR@, 5> >();
template void UnitTest::check@POINT@<LoopSIMD<@SCALAR@, 5, 64> >();
template void UnitTest::check@POINT@<LoopSIMD<LoopSIMD<@SCALAR@, 2>, 5> >();
} //namespace Simd
} // namespace Dune
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment