mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-02-07 05:05:13 -05:00
* replays * what's in there * can it be up there * sha is enough * insert sha as the key * fix str * update reset utils * that nested try/except was terrible * github_context can go
5 lines
198 B
Python
Executable File
5 lines
198 B
Python
Executable File
#!/usr/bin/env python3
|
|
from tinygrad.helpers import db_connection, VERSION, getenv
|
|
cur = db_connection()
|
|
cur.execute(f"drop table if exists process_replay_{getenv('GITHUB_SHA', 'HEAD')}_{VERSION}")
|