| #pragma once |
| |
| // ${generated_comment} |
| |
| #include <ATen/ATen.h> |
| #include <ATen/TensorGeometry.h> |
| |
| #include "torch/csrc/autograd/function.h" |
| #include "torch/csrc/autograd/variable.h" |
| #include "torch/csrc/autograd/saved_variable.h" |
| |
| namespace torch { namespace autograd { namespace generated { |
| |
| using at::Scalar; |
| using at::Tensor; |
| using at::IntList; |
| using at::Type; |
| using at::TensorGeometry; |
| |
| inline std::vector<Tensor> unpack_list(at::ArrayRef<SavedVariable> xs) { |
| // NB: we must explicitly do the conversion in the lambda, otherwise template |
| // deduction will give a Tensor of Variable which is not convertible |
| return fmap(xs, [](const SavedVariable& x) { return static_cast<Tensor>(x.unpack()); }); |
| } |
| |
| struct TypeAndSize { |
| TypeAndSize() : type(nullptr) {} |
| /* implicit */ |
| TypeAndSize(const Tensor & t) |
| : sizes(t.sizes()) |
| , type(&t.type()) {} |
| |
| Tensor zeros() { return at::zeros(*type, sizes); } |
| |
| private: |
| std::vector<int64_t> sizes; |
| Type* type; |
| }; |
| |
| ${autograd_function_declarations} |
| |
| }}} // namespace torch::autograd::generated |