```{code-cell} :tags: [remove-cell] import torch import header_code torch._logging.set_logs(graph_breaks=True) ``` # Common Graph Breaks Below are some common graph breaks and some workarounds. ## Incorrect Code Your code might contain errors (meaning it doesn't execute even without `torch.compile`). In the example below, there's a typo in the `torch.sin` call due to an extra argument. **Always disable `torch.compile` to check if the code runs correctly.** ```{code-cell} @torch.compile def fn(x): y = torch.sin(x, x) return y try: fn(torch.ones(3, 3)) except Exception as e: pass ``` Dynamo makes a best-effort attempt to hint if a graph break is caused by your code. But it can still sometimes be difficult to tell from the logs if the graph break is caused by an error in your code, is a more complicated graph break, or is a `torch.compile` bug. In order to differentiate, we recommend trying to run your code without `torch.compile` to see if you still get the error reported by the graph break. ## Data-dependent operations `torch.compile` graph breaks on data-dependent operations such as data-dependent control flow (if-statements, loops with tensors) and direct tensor data accesses (`.item`, `.data_ptr`). ```{code-cell} @torch.compile def fn(x): y = x.sum() if y > 0: return x + y.item() return x - y.item() print(fn(torch.ones(3, 3))) ``` The general workaround for these graph breaks is to avoid doing data-dependent operations. Some specific workarounds are: - If your control flow doesn't actually depend on data values, consider modifying your code to perform control flow on constants. ```{code-cell} # old x = torch.randn(3, 3) @torch.compile def fn(y): if x.sum() > 0: return y + x else: return y - x print(fn(torch.ones(3, 3))) ``` ```{code-cell} # new x = torch.randn(3, 3) cond = (x.sum() > 0).item() @torch.compile def fn(y): if cond: return y + x else: return y - x print(fn(torch.ones(3, 3))) ``` - Use higher-order ops like {ref}`cond` in place of data-dependent control flow ```{code-cell} # old @torch.compile def fn(x): if x.sum() > 0: return x + 1 return x - 1 print(fn(torch.ones(3, 3))) ``` ```{code-cell} # new @torch.compile def fn(x): return torch.cond( x.sum() > 0, lambda x: x + 1, lambda x: x - 1, (x,), ) print(fn(torch.ones(3, 3))) ``` - If you have a `.item()` call, try `torch._dynamo.config.capture_scalar_outputs = True` or `TORCHDYNAMO_CAPTURE_SCALAR_OUTPUTS=1`. - Wrap problematic parts of the function in a custom operator ## Printing and logging Printing/logging/issuing warnings will result in a graph break. You can try working around this by using `torch._dynamo.config.reorderable_logging_functions`. This config is used to reorder logging functions so that they are called at the end of the traced function, thus avoiding a graph break. However, the logged contents may differ if, for example, a mutation occurs. ```{code-cell} torch._dynamo.config.reorderable_logging_functions.add(print) @torch.compile def fn(x): x += 1 print("log!") return torch.sin(x) print(fn(torch.ones(3, 3))) ```