Unverified Commit 9dec261e authored by Qianli Scott Zhu's avatar Qianli Scott Zhu Committed by GitHub
Browse files

Update the benchmark run schema with the new columns. (#4308)

parent 3b15ca78
...@@ -17,6 +17,12 @@ ...@@ -17,6 +17,12 @@
"name": "run_date", "name": "run_date",
"type": "TIMESTAMP" "type": "TIMESTAMP"
}, },
{
"description": "The unique name for a test by the combination of key parameters, eg batch size, num of GPU, etc. It is hardware independent.",
"mode": "NULLABLE",
"name": "test_id",
"type": "STRING"
},
{ {
"description": "The tensorflow version information.", "description": "The tensorflow version information.",
"fields": [ "fields": [
...@@ -31,6 +37,18 @@ ...@@ -31,6 +37,18 @@
"mode": "NULLABLE", "mode": "NULLABLE",
"name": "git_hash", "name": "git_hash",
"type": "STRING" "type": "STRING"
},
{
"description": "The channel of the tensorflow binary, eg, nightly, RC, final, custom.",
"mode": "NULLABLE",
"name": "channel",
"type": "STRING"
},
{
"description": "Identify anything special about the build, eg CUDA 10, NCCL, MKL, etc.",
"mode": "NULLABLE",
"name": "build_type",
"type": "STRING"
} }
], ],
"mode": "REQUIRED", "mode": "REQUIRED",
...@@ -169,6 +187,12 @@ ...@@ -169,6 +187,12 @@
} }
] ]
}, },
{
"description": "Used to differentiate from AWS, GCE or DGX-1 at a high level",
"mode": "NULLABLE",
"name": "test_environment",
"type": "STRING"
},
{ {
"description": "The machine configuration of the benchmark run.", "description": "The machine configuration of the benchmark run.",
"mode": "NULLABLE", "mode": "NULLABLE",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment