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
For muliti-input model, when converting model to Relay graph, TVM may generate a different order of input arguments comapred to the original model.
For example, for the model below
As a result, when executing the RAF model with the arguments in the original order data_discount, data_quantity, data_shipdate, data_extendedprice
we will get the incorrect output due to the mismatch of arguments. This needs to be fixed.
The text was updated successfully, but these errors were encountered:
For muliti-input model, when converting model to Relay graph, TVM may generate a different order of input arguments comapred to the original model.
For example, for the model below
TVM-generated Relay graph takes the input arguments in the order of
This information can be extracted from:
https://github.com/apache/tvm/blob/2625878abef4bc78da65918a8a8c1db441638e8b/python/tvm/relay/frontend/pytorch.py#L4276
As a result, when executing the RAF model with the arguments in the original order
data_discount, data_quantity, data_shipdate, data_extendedprice
we will get the incorrect output due to the mismatch of arguments. This needs to be fixed.
The text was updated successfully, but these errors were encountered: