We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 095e3c9 commit e5bdedbCopy full SHA for e5bdedb
pytensor/link/numba/dispatch/scan.py
@@ -367,8 +367,6 @@ def scan({", ".join(outer_in_names)}):
367
}
368
global_env["np"] = np
369
370
- scalar_op_fn = compile_function_src(
371
- scan_op_src, "scan", {**globals(), **global_env}
372
- )
+ scan_op_fn = compile_function_src(scan_op_src, "scan", {**globals(), **global_env})
373
374
- return numba_basic.numba_njit(scalar_op_fn)
+ return numba_basic.numba_njit(scan_op_fn)
0 commit comments