You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include <iostream>
#include "mipp.h"
int main(int argc,char **argv)
{
mipp::Reg<int64_t> b = 3;
mipp::Reg<int64_t> c = 9;
auto d = b*c;
std::cout << b << std::endl;
std::cout << c << std::endl;
std::cout << d << std::endl;
return 1;
}
terminate called after throwing an instance of 'std::runtime_error'
what(): mipp::mul<int64_t> (AVX512) is undefined!
Hello,
the following code:
terminate called after throwing an instance of 'std::runtime_error'
what(): mipp::mul<int64_t> (AVX512) is undefined!
fix proposal in mipp_impl_AVX512.hxx :
The text was updated successfully, but these errors were encountered: