This unfortunately cannot be controlled by the auto-scheduler. One good feature of auto-scheduler is that it schedules an entire fused compute graph together. On the other hand, it implies that we don’t differentiate ops once they are fused into a single TE compute. Specifically, the name of the TE tensors, such as PadInputs, T_reshape, and compute, are defined in the TOPI.
Reference:
However, for your particular case, T_reshape seems come from the same op:
So IIUC, this is just the case that auto-scheduler printer wants to make sure the variable (e.g., T_reshape_ax0) it will be referring to is the right one, so it re-generates them using the same reshape op.