We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is overload supported in Python? When I try doing something like :
@onnx_op(op_type="CustomAdd", inputs=[PyOp.dt_float], outputs =[PyOp.dt_float]) def custom_add_float32(x, y): return np.add(x, y) @onnx_op(op_type="CustomAdd", inputs=[PyOp.dt_float16], outputs=[PyOp.dt_float16]) def custom_add_float16(x, y): return np.add(x, y)
I am getting errors:
terminate called after throwing an instance of 'std::runtime_error' what(): Type float16 not supported by python customops api
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is overload supported in Python?
When I try doing something like :
I am getting errors:
The text was updated successfully, but these errors were encountered: