Add type to name

This commit is contained in:
jbajic
2022-12-12 15:41:36 +01:00
parent a7faa8dd16
commit 66d420ac14
2 changed files with 2 additions and 2 deletions

View File

@@ -282,7 +282,7 @@ jobs:
uses: actions/cache@v3
with:
path: ./cache
key: ${{ runner.os }}-benchmark
key: ${{ runner.os }}-v1-benchmark
# Run `github-action-benchmark` action
- name: Store benchmark result

View File

@@ -34,7 +34,7 @@ def adapt_to_benchmark_action(data: Dict[str, Any]) -> List[Dict[str, Any]]:
assert "throughput" in type_data, f"There is no throughput in {type_data}!"
output.append(
{
"name": f"{dataset_name}_{dataset_type}_{execution_type}",
"name": f"{dataset_name}_{dataset_type}_{execution_type}_{type}",
"unit": "QPS",
"value": type_data["throughput"],
}