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
I tried the following implementation, but had no effect.
CUDA implementation:
struct CustomOPGpu : Ort::CustomOpBase<CustomOPGpu , CustomKernel> { const char* GetName() const { return "CustomOP"; }; const char* GetExecutionProviderType() const { return "CUDAExecutionProvider"; }; ... }
CPU implementation:
struct CustomOPCpu : Ort::CustomOpBase<CustomOPCpu , CustomKernel> { const char* GetName() const { return "CustomOP"; }; const char* GetExecutionProviderType() const { return "CPUExecutionProvider"; }; ... }
The doc (https://onnxruntime.ai/docs/reference/operators/add-custom-op.html) doesn't have any sample codes.
Relevant Area:
Is this issue related to a specific model? Model name: Model opset:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Ask a Question
I tried the following implementation, but had no effect.
CUDA implementation:
CPU implementation:
The doc (https://onnxruntime.ai/docs/reference/operators/add-custom-op.html) doesn't have any sample codes.
Question
Further information
Relevant Area:
Is this issue related to a specific model?
Model name:
Model opset:
Notes
The text was updated successfully, but these errors were encountered: