Does the order of graph_module.graph.nodes affect performance?

When I get a graph module using torch.compile, the node list in graph_module.graph.nodes has to be in topological order. I read somewhere that that’s considered the “execution order.” If I change the order of those nodes while maintaining topological order, does that impact the performance of the graph?
Are there any drawbacks at all to modifying the order of those nodes, given that topological ordering is maintained?