(table,q,k)
| 3 | from tinygrad.helpers import diskcache_get, diskcache_put, diskcache, diskcache_clear |
| 4 | |
| 5 | def remote_get(table,q,k): q.put(diskcache_get(table, k)) |
| 6 | def remote_put(table,k,v): diskcache_put(table, k, v) |
| 7 | |
| 8 | class DiskCache(unittest.TestCase): |
nothing calls this directly
no test coverage detected
searching dependent graphs…