From 83a095b53c8eb2a280c02e83e2a5006a79d3780c Mon Sep 17 00:00:00 2001 From: Utkarsh Saxena Date: Wed, 10 Jun 2026 18:33:58 -0500 Subject: [PATCH] Disable ndarray by default Flip the default of GS_ENABLE_NDARRAY from "1" to "0" so ndarray is disabled unless explicitly enabled. Co-authored-by: Cursor --- genesis/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/genesis/__init__.py b/genesis/__init__.py index 3361a0125d..3025c96ee4 100644 --- a/genesis/__init__.py +++ b/genesis/__init__.py @@ -134,7 +134,7 @@ def init( # Configure Quadrants fast cache and array type global use_ndarray, use_fastcache, use_zerocopy - is_ndarray_disabled = os.environ.get("GS_ENABLE_NDARRAY", "1") == "0" + is_ndarray_disabled = os.environ.get("GS_ENABLE_NDARRAY", "0") == "0" if use_ndarray is None: _use_ndarray = not (is_ndarray_disabled or performance_mode) else: