Johnson9009 opened a new pull request #8733: URL: https://github.com/apache/tvm/pull/8733
Current integer implicit conversion rule is simple. - int8 + uint32 -> int32 + int32 - int16 + uint16 -> int16 + int16 This behavior is not same with the C standard, this PR use the C standard rules, so the preceding examples will be changed to something below. - int8 + uint32 -> uint32 + uint32 - int16 + uint16 -> uint16 + uint16 -- 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]
