Integrations
API Reference
- GETGet status
- POSTGet impact metrics for a task
- POSTCalculate AI model impact metrics for BigQuery
- Manage models
- Manage GPUs
- Manage nodes
- Manage datacenters
Manage GPUs
Update a GPU
PUT
/
gpu
/
{gpuId}
curl --request PUT \
--url https://aiapi.scope3.com/gpu/{gpuId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "NVIDIA A100 40GB",
"max_power_w": 700,
"embodied_emissions_kgco2e": 282.1,
"embodied_water_mlh2o": 181.1,
"performance_ratio_to_h200": 1.5,
"ols_coefficient_gpu_count": 11.4,
"ols_intercept": 11.4,
"memory_bandwidth_gbps": 1555,
"tflops_fp32": 312
}'
{
"name": "NVIDIA A100 40GB",
"id": "a100_40gb",
"max_power_w": 700,
"embodied_emissions_kgco2e": 282.1,
"embodied_water_mlh2o": 181.1,
"performance_ratio_to_h200": 1.5,
"ols_coefficient_gpu_count": 11.4,
"ols_intercept": 11.4,
"memory_bandwidth_gbps": 1555,
"tflops_fp32": 312,
"customer_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_by": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/json
Response
200
application/json
GPU updated successfully
The response is of type object
.
curl --request PUT \
--url https://aiapi.scope3.com/gpu/{gpuId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "NVIDIA A100 40GB",
"max_power_w": 700,
"embodied_emissions_kgco2e": 282.1,
"embodied_water_mlh2o": 181.1,
"performance_ratio_to_h200": 1.5,
"ols_coefficient_gpu_count": 11.4,
"ols_intercept": 11.4,
"memory_bandwidth_gbps": 1555,
"tflops_fp32": 312
}'
{
"name": "NVIDIA A100 40GB",
"id": "a100_40gb",
"max_power_w": 700,
"embodied_emissions_kgco2e": 282.1,
"embodied_water_mlh2o": 181.1,
"performance_ratio_to_h200": 1.5,
"ols_coefficient_gpu_count": 11.4,
"ols_intercept": 11.4,
"memory_bandwidth_gbps": 1555,
"tflops_fp32": 312,
"customer_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_by": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.