#if !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION) #pragma once // @generated by torchgen/gen.py from Function.h #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace at { // aten::reshape(Tensor(a) self, SymInt[] shape) -> Tensor(a) inline at::Tensor reshape(const at::Tensor & self, at::IntArrayRef shape) { return at::_ops::reshape::call(self, c10::fromIntArrayRefSlow(shape)); } namespace symint { template >> at::Tensor reshape(const at::Tensor & self, at::IntArrayRef shape) { return at::_ops::reshape::call(self, c10::fromIntArrayRefSlow(shape)); } } // aten::reshape(Tensor(a) self, SymInt[] shape) -> Tensor(a) inline at::Tensor reshape_symint(const at::Tensor & self, c10::SymIntArrayRef shape) { return at::_ops::reshape::call(self, shape); } namespace symint { template >> at::Tensor reshape(const at::Tensor & self, c10::SymIntArrayRef shape) { return at::_ops::reshape::call(self, shape); } } } #else #error "This file should not be included when either TORCH_STABLE_ONLY or TORCH_TARGET_VERSION is defined." #endif // !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)