You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File ~/.lab/lib/python3.12/site-packages/numba/core/dispatcher.py:471, in _DispatcherBase._compile_for_args(self, *args, **kws)
468 error_rewrite(e, 'typing')
469 except errors.UnsupportedError as e:
470 # Something unsupported is present in the user code, add help info
--> 471 error_rewrite(e, 'unsupported_error')
472 except (errors.NotDefinedError, errors.RedefinedError,
473 errors.VerificationError) as e:
474 # These errors are probably from an issue with either the code
475 # supplied being syntactically or otherwise invalid
476 error_rewrite(e, 'interpreter')
File ~/.lab/lib/python3.12/site-packages/numba/core/dispatcher.py:409, in _DispatcherBase._compile_for_args..error_rewrite(e, issue_type)
407 raise e
408 else:
--> 409 raise e.with_traceback(None)
Hello,
Firstly, I want to say thank you for your contribution! I try your class but got this error on Jupyter Lab:
close is an array, or Series:
array([12010.8443 , 12096.330736, 11754.384991, ..., 88700. , 87800. , 86900. ])
And this is the error message:
`---------------------------------------------------------------------------
UnsupportedError Traceback (most recent call last)
Cell In[23], line 1
----> 1 aeot, _ = AEOT(close)
File ~/.lab/lib/python3.12/site-packages/numba/core/dispatcher.py:471, in _DispatcherBase._compile_for_args(self, *args, **kws)
468 error_rewrite(e, 'typing')
469 except errors.UnsupportedError as e:
470 # Something unsupported is present in the user code, add help info
--> 471 error_rewrite(e, 'unsupported_error')
472 except (errors.NotDefinedError, errors.RedefinedError,
473 errors.VerificationError) as e:
474 # These errors are probably from an issue with either the code
475 # supplied being syntactically or otherwise invalid
476 error_rewrite(e, 'interpreter')
File ~/.lab/lib/python3.12/site-packages/numba/core/dispatcher.py:409, in _DispatcherBase._compile_for_args..error_rewrite(e, issue_type)
407 raise e
408 else:
--> 409 raise e.with_traceback(None)
UnsupportedError: Failed in nopython mode pipeline (step: nopython frontend)
Unsupported op-code encountered: null()
File "../../../../../tmp/ipykernel_123952/761640549.py", line 99:
Could you please to give a running example using this class? Thank you very much!
The text was updated successfully, but these errors were encountered: