Updated PyTorch OSS benchmark infra (markdown)

Huy Do
2025-06-13 14:29:53 -07:00
parent 4d05632f34
commit cc7102c521

@ -274,7 +274,7 @@ params = {
api_url = "https://queries.clickhouse.cloud/run/84649f4e-52c4-4cf9-bd6e-0a105ea145c8"
r = requests.get(api_url, params=params, auth=(username, password))
r = requests.post(api_url, json=params, auth=(username, password))
with open("benchmark_results.txt", "w") as f:
print(r.text, file=f)
```