diff --git a/tinygrad/helpers.py b/tinygrad/helpers.py index d0503e484a..3f7d09745c 100644 --- a/tinygrad/helpers.py +++ b/tinygrad/helpers.py @@ -168,7 +168,7 @@ class Profiling(contextlib.ContextDecorator): cache_dir: str = os.path.join(getenv("XDG_CACHE_HOME", os.path.expanduser("~/Library/Caches" if OSX else "~/.cache")), "tinygrad") CACHEDB: str = getenv("CACHEDB", os.path.abspath(os.path.join(cache_dir, "cache.db"))) -VERSION = 18 +VERSION = 19 _db_connection = None def db_connection(): global _db_connection