From cac2b4e8b69bf93601f57e22136c91e6a8ad0ec4 Mon Sep 17 00:00:00 2001 From: chenyu Date: Wed, 29 Jan 2025 15:34:43 -0500 Subject: [PATCH] bump db version (#8805) OptOp spec changed --- tinygrad/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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