From 82794a8bb7aea9f5ddda8c431db858ae14b8cf51 Mon Sep 17 00:00:00 2001 From: "Sebastian M. Ernst" Date: Thu, 7 Mar 2024 20:17:25 +0100 Subject: [PATCH] inlining broke CI --- src/hapsira/core/jit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hapsira/core/jit.py b/src/hapsira/core/jit.py index b9dc11675..51d97f7cd 100644 --- a/src/hapsira/core/jit.py +++ b/src/hapsira/core/jit.py @@ -318,6 +318,6 @@ def wrapper(inner_func: Callable) -> Callable: return wrapper -@hjit("V(f[:])", inline=True) +@hjit("V(f[:])") def array_to_V_hf(x): return x[0], x[1], x[2]