Skip to content

Commit d8813e4

Browse files
authored
Merge pull request #144 from Janzert/leaderboard-gpu-enabled
Include gpu enabled flag with leaderboard.
2 parents 8a539ee + dabc01c commit d8813e4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

apiserver/apiserver/web/leaderboard.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ def leaderboard():
175175
"num_games": int(row["num_games"]),
176176
"score": float(row["score"]),
177177
"language": row["language"],
178+
"is_gpu_enabled": row["is_gpu_enabled"],
178179
"country": row["country_code"],
179180
"rank": int(row["rank"]) if row["rank"] is not None else None,
180181
"organization_rank": int(row["organization_rank"]) if row["organization_rank"] is not None and row["organization_id"] is not None else None,

0 commit comments

Comments
 (0)