bump db version to 11 (#3398)

followup after disabled fast math on metal.
This commit is contained in:
chenyu 2024-02-14 10:13:18 -05:00 committed by GitHub
parent 27f4de2ce4
commit 3c4c8c9e16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ _cache_dir: str = getenv("XDG_CACHE_HOME", os.path.expanduser("~/Library/Caches"
CACHEDB: str = getenv("CACHEDB", os.path.abspath(os.path.join(_cache_dir, "tinygrad", "cache.db")))
CACHELEVEL = getenv("CACHELEVEL", 2)
VERSION = 10
VERSION = 11
_db_connection = None
def db_connection():
global _db_connection