--------------------------------------------------------------------------- TypingError Traceback (most recent call last) in 3 eq = PDE({'T': 'laplace(T)'}, bc=[{'derivative': 0}, {'derivative_expression': '-.5*(value-1)'}]) 4 storage = MemoryStorage() ----> 5 result = eq.solve(state, t_range=3, tracker=['progress', storage.tracker(.1)]) ~/.local/lib/python3.8/site-packages/pde/pdes/base.py in solve(self, state, t_range, dt, tracker, method, ret_info, **kwargs) 556 557 # run the simulation --> 558 final_state = controller.run(state, dt) 559 560 if ret_info: ~/.local/lib/python3.8/site-packages/pde/solvers/controller.py in run(self, state, dt) 162 # initialize the stepper 163 jit_count_init = int(JIT_COUNT) --> 164 stepper = self.solver.make_stepper(state=state, dt=dt) 165 self.diagnostics["jit_count"] = { 166 "make_stepper": int(JIT_COUNT) - jit_count_init ~/.local/lib/python3.8/site-packages/pde/solvers/scipy.py in make_stepper(self, state, dt) 67 68 # obtain function for evaluating the right hand side ---> 69 rhs = self._make_pde_rhs(state, backend=self.backend) 70 71 def rhs_helper(t: float, state_flat: np.ndarray) -> np.ndarray: ~/.local/lib/python3.8/site-packages/pde/solvers/base.py in _make_pde_rhs(self, state, backend) 115 ) 116 --> 117 rhs = self.pde.make_pde_rhs(state, backend=backend) 118 119 if hasattr(rhs, "_backend"): ~/.local/lib/python3.8/site-packages/pde/pdes/base.py in make_pde_rhs(self, state, backend) 230 if backend == "auto": 231 try: --> 232 rhs = self._make_pde_rhs_numba_cached(state) 233 except NotImplementedError: 234 backend = "numpy" ~/.local/lib/python3.8/site-packages/pde/pdes/base.py in _make_pde_rhs_numba_cached(self, state) 207 208 if check_implementation: --> 209 self.check_rhs_consistency(state, rhs_numba=rhs) 210 211 return rhs # type: ignore ~/.local/lib/python3.8/site-packages/pde/pdes/base.py in check_rhs_consistency(self, state, t, tol, rhs_numba) 147 """ 148 # obtain evolution rate from the numpy implementation --> 149 res_numpy = self.evolution_rate(state.copy(), t).data 150 if not np.all(np.isfinite(res_numpy)): 151 self._logger.warning( ~/.local/lib/python3.8/site-packages/pde/pdes/pde.py in evolution_rate(self, state, t) 461 if isinstance(state, DataFieldBase): 462 # state is a single field --> 463 result.data[:] = cache["rhs_funcs"][0](state.data, t) 464 465 elif isinstance(state, FieldCollection): ~/.local/lib/python3.8/site-packages/pde/pdes/pde.py in rhs_func(*args) 324 bc_args = NumbaDict() # args for differential operators 325 bc_args["t"] = args[-1] # pass time to differential operators --> 326 return func_inner(*args, None, bc_args, *extra_args) # type: ignore 327 328 return rhs_func in _lambdifygenerated(T, t, none, bc_args) 1 def _lambdifygenerated(T, t, none, bc_args): ----> 2 return (laplace(T, none, bc_args)) ~/.local/lib/python3.8/site-packages/numba/core/dispatcher.py in _compile_for_args(self, *args, **kws) 466 e.patch_message(msg) 467 --> 468 error_rewrite(e, 'typing') 469 except errors.UnsupportedError as e: 470 # Something unsupported is present in the user code, add help info ~/.local/lib/python3.8/site-packages/numba/core/dispatcher.py in error_rewrite(e, issue_type) 407 raise e 408 else: --> 409 raise e.with_traceback(None) 410 411 argtypes = [] TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.apply_op at 0x7ff99b2cf310>) found for signature: >>> apply_op(array(float64, 1d, C), out=array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), out=array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.chain..wrap at 0x7ff99b2cf040>) found for signature: >>> wrap(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.ghost_cell_setter at 0x7ff9a070fe50>) found for signature: >>> ghost_cell_setter(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.ghost_cell_setter at 0x7ff9a070f0d0>) found for signature: >>> ghost_cell_setter(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.ghost_cell_setter at 0x7ff9a070f0d0>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py (186) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py", line 186: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: ghost_cell_setter_low(data_full, args=args) ghost_cell_setter_high(data_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.ghost_cell_setter at 0x7ff9a070f0d0>) found for signature: >>> ghost_cell_setter(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.ghost_cell_setter at 0x7ff9a070f0d0>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py (186) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py", line 186: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: ghost_cell_setter_low(data_full, args=args) ghost_cell_setter_high(data_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.ghost_cell_setter at 0x7ff9a070fe50>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/axes.py (318) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/axes.py", line 318: def wrap(data_full: np.ndarray, args=None) -> None: first(data_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.ghost_cell_setter at 0x7ff9a070fe50>) found for signature: >>> ghost_cell_setter(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.ghost_cell_setter at 0x7ff9a070f0d0>) found for signature: >>> ghost_cell_setter(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.ghost_cell_setter at 0x7ff9a070f0d0>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py (186) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py", line 186: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: ghost_cell_setter_low(data_full, args=args) ghost_cell_setter_high(data_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.ghost_cell_setter at 0x7ff9a070f0d0>) found for signature: >>> ghost_cell_setter(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.ghost_cell_setter at 0x7ff9a070f0d0>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py (186) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py", line 186: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: ghost_cell_setter_low(data_full, args=args) ghost_cell_setter_high(data_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.ghost_cell_setter at 0x7ff9a070fe50>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/axes.py (318) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/axes.py", line 318: def wrap(data_full: np.ndarray, args=None) -> None: first(data_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.chain..wrap at 0x7ff99b2cf040>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/base.py (963) File "../../../../.local/lib/python3.8/site-packages/pde/grids/base.py", line 963: def apply_op( set_valid(arr_full, arr) set_ghost_cells(arr_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), out=array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.chain..wrap at 0x7ff99b2cf040>) found for signature: >>> wrap(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.ghost_cell_setter at 0x7ff9a070fe50>) found for signature: >>> ghost_cell_setter(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.ghost_cell_setter at 0x7ff9a070f0d0>) found for signature: >>> ghost_cell_setter(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.ghost_cell_setter at 0x7ff9a070f0d0>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py (186) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py", line 186: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: ghost_cell_setter_low(data_full, args=args) ghost_cell_setter_high(data_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.ghost_cell_setter at 0x7ff9a070f0d0>) found for signature: >>> ghost_cell_setter(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.ghost_cell_setter at 0x7ff9a070f0d0>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py (186) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py", line 186: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: ghost_cell_setter_low(data_full, args=args) ghost_cell_setter_high(data_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.ghost_cell_setter at 0x7ff9a070fe50>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/axes.py (318) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/axes.py", line 318: def wrap(data_full: np.ndarray, args=None) -> None: first(data_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.ghost_cell_setter at 0x7ff9a070fe50>) found for signature: >>> ghost_cell_setter(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.ghost_cell_setter at 0x7ff9a070f0d0>) found for signature: >>> ghost_cell_setter(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.ghost_cell_setter at 0x7ff9a070f0d0>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py (186) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py", line 186: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: ghost_cell_setter_low(data_full, args=args) ghost_cell_setter_high(data_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.ghost_cell_setter at 0x7ff9a070f0d0>) found for signature: >>> ghost_cell_setter(array(float64, 1d, C), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) No implementation of function Function(.virtual_point at 0x7ff99adeff70>) found for signature: >>> virtual_point(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64]) There are 2 candidate implementations: - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(int64 x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 - Of which 1 did not match due to: Overload in function 'register_jitable..wrap..ov_wrap': File: numba/core/extending.py: Line 159. With argument(s): '(array(float64, 1d, C), UniTuple(Literal[int](31) x 1), args=DictType[unicode_type,int64])': Rejected as the implementation raised a specific error: TypingError: Failed in nopython mode pipeline (step: nopython frontend) Internal error at . too many positional arguments During: resolving callee type: type(CPUDispatcher()) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (1082) Enable logging at debug level for details. File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 1082: def virtual_point(arr: np.ndarray, idx: Tuple[int, ...], args=None) -> float: elif dim == 2: return func(grid_value, dx, coords[0], coords[1], t) # type: ignore ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.virtual_point at 0x7ff99adeff70>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py (612) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/local.py", line 612: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: data_valid = data_full[..., 1:-1] val = vp_value(data_valid, (np_idx,), args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.ghost_cell_setter at 0x7ff9a070f0d0>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py (186) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/axis.py", line 186: def ghost_cell_setter(data_full: np.ndarray, args=None) -> None: ghost_cell_setter_low(data_full, args=args) ghost_cell_setter_high(data_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.ghost_cell_setter at 0x7ff9a070fe50>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/boundaries/axes.py (318) File "../../../../.local/lib/python3.8/site-packages/pde/grids/boundaries/axes.py", line 318: def wrap(data_full: np.ndarray, args=None) -> None: first(data_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.chain..wrap at 0x7ff99b2cf040>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/grids/base.py (963) File "../../../../.local/lib/python3.8/site-packages/pde/grids/base.py", line 963: def apply_op( set_valid(arr_full, arr) set_ghost_cells(arr_full, args=args) ^ raised from /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/numba/core/typeinfer.py:1086 During: resolving callee type: Function(.apply_op at 0x7ff99b2cf310>) During: typing of call at /home/AD.NORCERESEARCH.NO/veri/.local/lib/python3.8/site-packages/pde/tools/numba.py (322) File "../../../../.local/lib/python3.8/site-packages/pde/tools/numba.py", line 322: def f_with_allocated_out(arr, out=None, args=None): out_arr = np.empty(out_shape, dtype=arr.dtype) return f_jit(arr, out=out_arr, args=args) ^