Helper Utilities
Helper Utilities
#340350
Description
- resolve-cpu-benchmark—calculate the CPU benchmark, when defining new Inbound Hosts.
Resource
/helper-utilities/resolve-cpu-benchmark
Supported Operations
Table: Helper Utilities Supported Operations
Operation |
HTTP Method |
Input |
Output |
Description |
Resolve Benchmarks |
POST /helper-utilities/resolve-cpu-benchmark |
Helper Utilities: Properties Returned for Resolve CPU Benchmark |
Resolve the CPU benchmark for the specified system. The input elements correspond to the Plan and Manage Supply > Add Host Supply dialog box. For details, see |
Table: Helper Utilities to Resolve CPU Benchmark Resource Elements
Element |
Type |
Req |
Description |
cores_per_cpu |
string |
R |
Cores per CPU on the Plan and Manage Supply > Add Host Supply dialog box. Cores per CPU, from the System Summary DSE page. |
cpu_allocation |
string |
|
Not displayed on the Plan and Manage Supply > Add Host Supply dialog box. CPU Allocation from the System Summary DSE page. CPU Allocation of the system referenced by the catalog_spec. -1 if not applicable. |
cpu_model |
string |
R |
CPU Architecture on the Plan and Manage Supply > Add Host Supply dialog box. CPU Architecture, as from the System Summary DSE page. |
cpu_speed |
string |
R |
CPU Speed on the Plan and Manage Supply > Add Host Supply dialog box. Normalized CPU Speed (MHz), as from the System Summary DSE page. |
manufacturer |
string |
|
Manufacturer on the Plan and Manage Supply > Add Host Supply dialog box. Manufacturer, from the System Summary DSE page. |
memory |
string |
|
Total Memory on the Plan and Manage Supply > Add Host Supply dialog box. Normalized Total Memory (MB), from the System Summary DSE page. |
platform_model |
string |
|
Platform/Model on the Plan and Manage Supply > Add Host Supply dialog box. Model, from the System Summary DSE page. |
threads_per_cpu |
string |
R |
Threads Per Core on the Plan and Manage Supply > Add Host Supply dialog box. Threads Per Core, as from the System Summary DSE page. |
total_physical_cpus |
string |
R |
Physical CPUs on the Plan and Manage Supply > Add Host Supply dialog box. Total Physical CPUs, from the System Summary DSE page. |
Properties Returned for Resolve CPU Benchmark
Table: Helper Utilities to Resolve CPU Benchmark Properties Returned
Element |
Type |
Description |
cpu_benchmarks |
[name, value, score_type] |
The resulting CPU benchmark.
|
Examples
Example: Calculating CPU Benchmark
The following example shows you how to calculate the CPU benchmark.

Request:
POST /helper-utilities/resolve-cpu-benchmark
{
"manufacturer" : "HP",
"platform_model" : "ProLiant DL585 G6",
"cpu_model": "AMD Opteron 8435",
"cpu_speed": 2600,
"total_physical_cpus": 2,
"cores_per_cpu": 6,
"threads_per_core": 1
}
Response:
[
{
"name": "CINT2006 Rate",
"score_type": "cint2006rate",
"value": 160
}
]