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
Is your feature request related to a problem? Please describe.
Now that we are going to be able to specify tensor properties for inputs such as data type and format, it should be easier to use a tensor I already have as an example of the shape dtype and format I want.
Describe the solution you'd like
compile should be able to accept a list of Tensors to represent my graph inputs. From those tensors compile should be able to infer shape, data type and tensor format for the user. These should be logged in the debug log for easy debugging.
Describe alternatives you've considered
Note: I dont think theres a way to support dynamic shape using this method, so users will need to use trtorch.Input for that
Additional context
The text was updated successfully, but these errors were encountered:
But, in this case, what do we do if something like the dtype or tensor format is inconstant between tensors?
Also doesnt seem like this is that different than doing at this point:
We could maybe have trtorch.Input pull out the shape and error out if the types are inconstant. Really though we wanted to give users a bypass around trtorch.Input with this feature.
Is your feature request related to a problem? Please describe.
Now that we are going to be able to specify tensor properties for inputs such as data type and format, it should be easier to use a tensor I already have as an example of the shape dtype and format I want.
Describe the solution you'd like
compile should be able to accept a list of Tensors to represent my graph inputs. From those tensors compile should be able to infer shape, data type and tensor format for the user. These should be logged in the debug log for easy debugging.
Describe alternatives you've considered
Note: I dont think theres a way to support dynamic shape using this method, so users will need to use
trtorch.Input
for thatAdditional context
The text was updated successfully, but these errors were encountered: