aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/vectorization_logic.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2014-09-14 19:38:49 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2014-09-14 19:38:49 +0200
commitc83e01f2d6113fb2f7dcc591b3364eb87b7a74aa (patch)
tree46c3b357c70ac58ef48d29bd7c9680c15e146658 /test/vectorization_logic.cpp
parent26db954776c0e8f0230ca1542ad303e23ede4db1 (diff)
Favor column major storage for inner products
Diffstat (limited to 'test/vectorization_logic.cpp')
-rw-r--r--test/vectorization_logic.cpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/test/vectorization_logic.cpp b/test/vectorization_logic.cpp
index 42015e21b..303eb6cf0 100644
--- a/test/vectorization_logic.cpp
+++ b/test/vectorization_logic.cpp
@@ -30,13 +30,15 @@ std::string demangle_unrolling(int t)
std::string demangle_flags(int f)
{
std::string res;
- if(f&RowMajorBit) res += " | RowMajor";
- if(f&PacketAccessBit) res += " | Packet";
- if(f&LinearAccessBit) res += " | Linear";
- if(f&LvalueBit) res += " | Lvalue";
- if(f&DirectAccessBit) res += " | Direct";
- if(f&AlignedBit) res += " | Aligned";
- if(f&NestByRefBit) res += " | NestByRef";
+ if(f&RowMajorBit) res += " | RowMajor";
+ if(f&PacketAccessBit) res += " | Packet";
+ if(f&LinearAccessBit) res += " | Linear";
+ if(f&LvalueBit) res += " | Lvalue";
+ if(f&DirectAccessBit) res += " | Direct";
+ if(f&AlignedBit) res += " | Aligned";
+ if(f&NestByRefBit) res += " | NestByRef";
+ if(f&NoPreferredStorageOrderBit) res += " | NoPreferredStorageOrderBit";
+
return res;
}