Jump

for (auto i = 0u; i < 100'000; ++i) {
  asm("nop");
  asm("nop");
  asm("nop");
  ...
  // 15 times
}
^ This is Faster?
for (auto i = 0u; i < 100'000; ++i) {
  asm("nop");
  asm("nop");
  asm("nop");
  ...
  // 14 times
}
^ This is Faster?

* The benchmark is run under AMD Ryzen 9.

* For the full benchmark code, please refer here.

* For illustration purposes only, see FAQ for more details.