HLearning opened a new pull request, #15294:
URL: https://github.com/apache/tvm/pull/15294

   fix relay frontend pytorch op: addmm
   calculation formula error.
   
   bug: 
   out = input + alpha * beta * mat1 @ mat2
   
   fix bug:
   out = beta * input + alpha * mat1 @ mat2


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to