Hi, I want to trace my model and convert it into GraphModule. And this GraphModule will be provided to our compiler. For this, I’m using torch._dynamo.export
, but it takes huge amount of time for tracing my model, and it found out a lot of time is spent on creating and updating guards which is not necessary for my case. It must be much faster if I can disable guard update and creation, is there any way to do so? Or, is there some kind of method to reduce tracing time?