Jump

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

* The benchmark is run under AMD Ryzen 9.

* For the full benchmark code, please refer here.