From c1a254111305c5a543f1645c547f60dbad039988 Mon Sep 17 00:00:00 2001 From: ricardoV94 Date: Thu, 29 Jan 2026 17:39:31 +0100 Subject: [PATCH] Make Numba the default linker --- pytensor/compile/mode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytensor/compile/mode.py b/pytensor/compile/mode.py index 5a5e0c9cdc..aa0e1b3e28 100644 --- a/pytensor/compile/mode.py +++ b/pytensor/compile/mode.py @@ -512,7 +512,7 @@ def get_mode(orig_string): if upper_string == "FAST_RUN": linker = config.linker if linker == "auto": - return CVM if config.cxx else VM + return NUMBA return fast_run_linkers_to_mode[linker] global _CACHED_RUNTIME_MODES