We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 484bd4c commit 7452679Copy full SHA for 7452679
1 file changed
test/performance/interleave.cpp
@@ -101,7 +101,7 @@ Result test_deinterleave(int factor, const Target &t) {
101
102
// Uncomment to dump asm for inspection
103
output.compile_to_assembly("/dev/stdout",
104
- std::vector<Argument>{in}, "interleave", t);
+ std::vector<Argument>{in}, "interleave", t);
105
106
return Result{(int)sizeof(T), factor, out.size_in_bytes() / (1.0e9 * time)};
107
}
@@ -121,8 +121,8 @@ int main(int argc, char **argv) {
121
for (int t : {1, 2, 4, 8}) {
122
for (int f = 2; f < 16; f++) {
123
#else
124
- {
125
+ {
126
int t = 1, f = 4;
127
#endif
128
Result r1, r2;
@@ -150,7 +150,6 @@ int main(int argc, char **argv) {
150
<< r1.factor << " "
151
<< r1.bandwidth << " "
152
<< r2.bandwidth << "\n";
153
-
154
155
156
0 commit comments