#pragma once // ${generated_comment} #include #include #include #include "torch/csrc/autograd/function.h" #include "torch/csrc/autograd/variable.h" #include "torch/csrc/autograd/saved_variable.h" #include #include namespace torch { namespace autograd { namespace generated { using at::Scalar; using at::Tensor; using at::IntArrayRef; using at::ArrayRef; using at::Type; using at::TensorGeometry; using at::ScalarType; using c10::optional; using c10::fmap; inline std::vector unpack_list(at::ArrayRef xs, std::shared_ptr saved_for = nullptr) { // 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, [&saved_for](const SavedVariable& x) { // TODO(crcrpar): Use `std::move(saved_for)` to avoid incrementing refcount, which would need refactoring. return static_cast(x.unpack(saved_for)); }); } inline c10::List> unpack_opt_list(at::ArrayRef xs, std::shared_ptr saved_for = nullptr) { torch::List> result; result.reserve(xs.size()); for (const SavedVariable& v : xs) { auto var = v.unpack(saved_for); result.push_back(var.defined() ? c10::optional(var) : c10::nullopt); } return result; } using torch::autograd::TypeAndSize; ${autograd_function_declarations} }}} // namespace torch::autograd::generated