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
When compiling the Waveglow model with Torch-TRT, the following error is encountered:
RuntimeError: Schema not found for node. File a bug report. Node: %25634 : int = aten::div(%22926, %25633, %234) Input types: int, int, str
The missing TorchScript converter/evaluator is: aten::div(int, int, "trunc")
aten::div(int, int, "trunc")
Steps to reproduce the behavior:
torch_tensorrt.compile
(1, 80, 256)
(1, 8, 8192)
truncate_long_and_double
Model should successfully compile to Torch-TRT. Specifically, this invalid aten::div schema should not arise in the TorchScript IR.
aten::div
The text was updated successfully, but these errors were encountered:
gs-olive
Successfully merging a pull request may close this issue.
Bug Description
When compiling the Waveglow model with Torch-TRT, the following error is encountered:
The missing TorchScript converter/evaluator is:
aten::div(int, int, "trunc")
To Reproduce
Steps to reproduce the behavior:
torch_tensorrt.compile
with Waveglow model as input, using fp32 precision.(1, 80, 256)
and(1, 8, 8192)
and enabletruncate_long_and_double
with 12 GB workspace.Expected behavior
Model should successfully compile to Torch-TRT. Specifically, this invalid
aten::div
schema should not arise in the TorchScript IR.Environment
The text was updated successfully, but these errors were encountered: