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

[bugfix] Remove explicit double from SIMD transose code for opcounting

parent 575e0690
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@
// DOUBLE 2 x 2
void transpose_reg(Vec2d& a0, Vec2d& a1)
{
double tmp = a0[1];
auto tmp = a0[1];
a0 = Vec2d(a0[0], a1[0]);
a1 = Vec2d(tmp, a1[1]);
}
......
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