We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afc1647 commit 789ceadCopy full SHA for 789cead
benchmarks/decoders/generate_readme_data.py
@@ -85,12 +85,13 @@ def main() -> None:
85
)
86
df_data.append(
87
{
88
- "cpu_count": os.cpu_count(),
89
- "system": platform.system(),
90
- "machine": platform.machine(),
91
- "processor": platform.processor(),
92
- "python_version": str(platform.python_version()),
93
- "is_cuda_available": str(torch.cuda.is_available()),
+ "system_metadata": {
+ "cpu_count": os.cpu_count(),
+ "system": platform.system(),
+ "machine": platform.machine(),
+ "python_version": str(platform.python_version()),
+ "is_cuda_available": str(torch.cuda.is_available()),
94
+ }
95
}
96
97
0 commit comments