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
I am successfully using Piper TTS with Onnx Runtime.
However using Onnx Runtime + DirectML caused the error "ORT NOT IMPLEMENTED" in such example code as below.
Are you aware of any functions that are being used in Pytorch that are not compatible / available in DirectML or WebGL yet?
I am asking about WebGL because I tried using WebGL, and it failed as well.
I am successfully using Piper TTS with Onnx Runtime.
However using Onnx Runtime + DirectML caused the error "ORT NOT IMPLEMENTED" in such example code as below.
Are you aware of any functions that are being used in Pytorch that are not compatible / available in DirectML or WebGL yet?
I am asking about WebGL because I tried using WebGL, and it failed as well.
OnnxModelHandler::OnnxModelHandler(const std::wstring& uModelPath, const std::string& uSessionName)
{
OrtApi const& nOrtApi = Ort::GetApi();
const OrtDmlApi* nOrtDmlApi;
auto status = nOrtApi.GetExecutionProviderApi("DML", ORT_API_VERSION, reinterpret_cast<const void**>(&nOrtDmlApi));
};
The text was updated successfully, but these errors were encountered: