Commonmark migration
Source Link

Branch prediction.

With a sorted array, the condition data[c] >= 128 is first false for a streak of values, then becomes true for all later values. That's easy to predict. With an unsorted array, you pay for the branching cost.

Branch prediction.

With a sorted array, the condition data[c] >= 128 is first false for a streak of values, then becomes true for all later values. That's easy to predict. With an unsorted array, you pay for the branching cost.

Branch prediction.

With a sorted array, the condition data[c] >= 128 is first false for a streak of values, then becomes true for all later values. That's easy to predict. With an unsorted array, you pay for the branching cost.

Branch prediction.

With a sorted array, the condition data[c] >= 128 is first falsefalse for a streak of values, then becomes truetrue for all later values. That's easy to predict. With an unsorted array, you pay for the branching cost.

Branch prediction.

With a sorted array, the condition data[c] >= 128 is first false for a streak of values, then becomes true for all later values. That's easy to predict. With an unsorted array, you pay the branching cost.

Branch prediction.

With a sorted array, the condition data[c] >= 128 is first false for a streak of values, then becomes true for all later values. That's easy to predict. With an unsorted array, you pay for the branching cost.

added 8 characters in body
Source Link
dippas
  • 50.8k
  • 15
  • 98
  • 109

Branch prediction.Branch prediction.

With a sorted array, the condition data[c] >= 128 is first false for a streak of values, then becomes true for all later values. That's easy to predict. With an unsorted array, you pay the branching cost.

Branch prediction. With a sorted array, the condition data[c] >= 128 is first false for a streak of values, then becomes true for all later values. That's easy to predict. With an unsorted array, you pay the branching cost.

Branch prediction.

With a sorted array, the condition data[c] >= 128 is first false for a streak of values, then becomes true for all later values. That's easy to predict. With an unsorted array, you pay the branching cost.

Mod Removes Wiki by Shog9
Post Made Community Wiki by George Stocker
[Edit removed during grace period]
Source Link
Deepu
  • 11.5k
  • 13
  • 55
  • 88
Loading
typo
Source Link
Tim Pietzcker
  • 304.7k
  • 54
  • 473
  • 533
Loading
Source Link
Daniel Fischer
  • 176.6k
  • 16
  • 295
  • 422
Loading