Skip to content

Instantly share code, notes, and snippets.

@adamsitnik
Last active January 23, 2018 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamsitnik/d026ccc69063b53123abac645304c4d3 to your computer and use it in GitHub Desktop.
Save adamsitnik/d026ccc69063b53123abac645304c4d3 to your computer and use it in GitHub Desktop.
GlobalSetup();
for (int s = 0; s < stagesCount; s++)
for (int it = 0; it < iterationsCount; it++)
{
IterationSetup();
for (int inv = 0; inv < invocationsCount; inv++)
Benchmark();
IterationCleanup();
}
GlobalCleanup();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment