Skip to content

Commit

Permalink
doc stress_ng:div16 method
Browse files Browse the repository at this point in the history
  • Loading branch information
daroczig committed Sep 26, 2024
1 parent 7794306 commit 5b1a530
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/sc_crawler/lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def _geekbenchmark(name: str, description: str):
Benchmark(
benchmark_id="stress_ng:cpu_all",
name="stress-ng CPU all",
description="Stress the CPU with all available methods supported by stress-ng, and count the total bogo operations per second based on wall clock run time. The stress methods include bit operations, recursive calculations, integer divisions, floating point operations, matrix multiplication, stats, trigonometric, and hash functions.",
description="Stress the CPU with all available methods supported by stress-ng, and count the total bogo operations per second based on wall clock run time. The stress methods include bit operations, recursive calculations, integer divisions, floating point operations, matrix multiplication, stats, trigonometric, and hash functions. Note that this is to be deprecated in favor of stress_ng:div16.",
framework="stress_ng",
measurement="cpu_all",
config_fields={
Expand All @@ -276,6 +276,18 @@ def _geekbenchmark(name: str, description: str):
},
unit="bogo ops/s (real time)",
),
Benchmark(
benchmark_id="stress_ng:div16",
name="stress-ng div16",
description="Stress the CPU with the div16 method of stress-ng using a varying number of vCPU cores, and count the measured maximum total bogo operations per second based on wall clock run time.",
framework="stress_ng",
measurement="div16",
config_fields={
"cores": "Number of CPU cores stressed.",
"framework_version": "Version number of stress-ng.",
},
unit="bogo ops/s (real time)",
),
Benchmark(
benchmark_id="stress_ng:best1",
name="stress-ng div16 single-core",
Expand Down

0 comments on commit 5b1a530

Please sign in to comment.