Add AVX512 optimizations for matrix multiply

This commit is contained in:
aaraujom
2022-05-12 23:41:19 +00:00
committed by Rasmus Munk Larsen
parent 00b75375e7
commit 25db0b4a82
17 changed files with 1251 additions and 142 deletions

View File

@@ -143,8 +143,8 @@ int main()
// Specialize GEBP kernel and traits for mpreal (no need for peeling, nor complicated stuff)
// This also permits to directly call mpfr's routines and avoid many temporaries produced by mpreal
template<>
class gebp_traits<mpfr::mpreal, mpfr::mpreal, false, false>
template<bool UnitResIncr>
class gebp_traits<mpfr::mpreal, mpfr::mpreal, UnitResIncr, false, false>
{
public:
typedef mpfr::mpreal ResScalar;