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
// Cut off at 25 due to the repetition above. Might need tweaking for large instructions.
185
-
constint cutoff = 25;
209
+
constint cutoff = 50;
186
210
for (int i = 0; i < std::min((int)lines.size(), cutoff); i++) {
187
211
printf("%s\n", lines[i].c_str());
188
212
}
189
213
if (lines.size() > cutoff)
190
214
printf("...\n");
191
215
}
192
-
printf("Jit was %fx faster than interp.\n\n", jit_speed / interp_speed);
216
+
printf("Jit was %fx faster than interp, IR was %fx faster, JIT IR %fx.\n\n", jit_speed / interp_speed, ir_speed / interp_speed, jit_ir_speed / interp_speed);
0 commit comments