Files
pytorch/torch/script.h
James Reed 34ccfba403 [JIT] Include custom_class.h in torch/script.h
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/32586

Test Plan: Imported from OSS

Differential Revision: D19558716

fbshipit-source-id: be540d8ed7de0834e64be89ae621ae50befc83b0
2020-01-28 11:02:54 -08:00

13 lines
386 B
C

#pragma once
#include <torch/csrc/api/include/torch/types.h>
#include <torch/csrc/autograd/generated/variable_factories.h>
#include <torch/csrc/autograd/grad_mode.h>
#include <torch/csrc/jit/custom_operator.h>
#include <torch/csrc/jit/import.h>
#include <torch/csrc/jit/pickle.h>
#include <torch/csrc/autograd/custom_function.h>
#include <torch/custom_class.h>
#include <ATen/ATen.h>