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
These model will call the nms_kernel function, and nms_kernel cannot run on bfloat16
nms_kernel
So cannot set model.to(torch.bfloat16), so their convolution node encounter
model.to(torch.bfloat16)
convolution
RuntimeError: expected scalar type BFloat16 but found Float
Which means its input is bfloat16 (from ttnn) and weight is float32 (origin argument). I think compiler should have capable to solve this problem
bfloat16
float32
The text was updated successfully, but these errors were encountered:
No branches or pull requests
These model will call the
nms_kernel
function, andnms_kernel
cannot run on bfloat16So cannot set
model.to(torch.bfloat16)
, so theirconvolution
node encounterWhich means its input is
bfloat16
(from ttnn) and weight isfloat32
(origin argument). I think compiler should have capable to solve this problemThe text was updated successfully, but these errors were encountered: