This document summarizes an upcoming talk on PyTorch internals. It begins with an agenda that will cover tensors, the just-in-time compiler (JIT), and production tips. It then provides background on the speaker and disclaimers. The bulk of the document is a section on tensors that explains they are n-dimensional arrays that serve as the basic data structure in PyTorch. It describes how tensors have types, shapes, devices and are implemented via C++ extensions to Python.