1# Exporting to ExecuTorch 2 3One of the important steps in getting your PyTorch programs ready for execution 4on an edge device is exporting them. This is achieved through the use of a 5PyTorch API called `torch.export`. 6 7The `torch.export` documentation, which is part of the PyTorch core library, can 8be found in the Core PyTorch documentation set. Additionally, we provide a 9step-by-step tutorial that takes you through the process of exporting a PyTorch 10program, making it easier for you to understand and implement the process. 11 12To learn more about exporting your model: 13 14* Complete the [Exporting to ExecuTorch tutorial](./tutorials/export-to-executorch-tutorial). 15* Read the [torch.export documentation](https://pytorch.org/docs/2.1/export.html). 16