Skip to content
Snippets Groups Projects
Commit 20f7de8b authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Remove transpose_reg of Vec2d's

It is pretty useless anyway and it breaks with operator counting
overloaded types.
parent 655e4521
No related branches found
No related tags found
No related merge requests found
......@@ -3,20 +3,6 @@
#include<dune/perftool/common/vectorclass.hh>
#if MAX_VECTOR_SIZE >= 128
void transpose_reg(Vec2d& a0, Vec2d& a1)
{
Vec2d b0, b1;
b0 = blend2d<0,2>(a0, a1);
b1 = blend2d<1,3>(a0, a1);
a0 = b0;
a1 = b1;
}
#endif
#if MAX_VECTOR_SIZE >= 256
void transpose_reg(Vec4d& a0, Vec4d& a1, Vec4d& a2, Vec4d& a3)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment