Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

types/hardware: Add HEPScore23 and deprecate HS06 #229

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions quattor/types/hardware.pan
Original file line number Diff line number Diff line change
Expand Up @@ -220,15 +220,15 @@ type structure_console = extensible {

@documentation{
System benchmark results
benchmarks is used to hold the performance benchmark for the machine
i.e. HEPSpec06 score
this might be used to scale things such as the wall time
example of using this might be :
variable CONDOR_WN_SCALING_FACTOR = value('/hardware/benchmarks/hepspec06')
/ ( 4 * get_num_of_cores()) ;

Benchmarks is used to hold the performance benchmark for the machine e.g. HEPScore23.
These can be used to scale things such as the wall time of jobs, an example of using this might be:

variable CONDOR_WN_SCALING_FACTOR = value('/hardware/benchmarks/hepscore23') / ( 4 * get_num_of_cores());
}
type structure_benchmark = {
"hepspec06" ? double
"hepspec06" ? double with { deprecated(0, "HEPSPEC06 has been superceded by HEPScore23"); true; }
"hepscore23" ? double
@{unit: Gflops}
"HPL" ? double
@{unit: MB/s TRIAD}
Expand Down