mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
The removed macros are not used in other places of the `pytorch` GitHub org. Pull Request resolved: https://github.com/pytorch/pytorch/pull/164056 Approved by: https://github.com/albanD
21 lines
509 B
C
21 lines
509 B
C
#ifndef THP_H
|
|
#define THP_H
|
|
|
|
#include <torch/csrc/Export.h>
|
|
#include <torch/csrc/python_headers.h>
|
|
|
|
#include <torch/csrc/Exceptions.h>
|
|
#include <torch/csrc/Generator.h>
|
|
#include <torch/csrc/Module.h>
|
|
#include <torch/csrc/Size.h>
|
|
#include <torch/csrc/Storage.h>
|
|
#include <torch/csrc/Types.h>
|
|
#include <torch/csrc/utils.h> // This requires defined Storage and Tensor types
|
|
#include <torch/csrc/utils/byte_order.h>
|
|
|
|
#include <torch/csrc/serialization.h>
|
|
|
|
#include <torch/csrc/autograd/python_autograd.h>
|
|
|
|
#endif
|