I am trying to understand why exported_program from torch.export.export is having TRAINING dialect.
model.eval()
with torch.no_grad():
exported_model = torch.export.export(model, args)
print(exported_model.dialect)
Model has no TRAINING related operations.
These are all the operations model has:
- placeholder
- call_function
Target for all the call_function is all Aten operations.How can I convert this exported program to Aten dialect ?