#pragma once // @generated by torchgen/gen.py from Operator.h #include #include #include // Forward declarations of any types needed in the operator signatures. // We can't directly include these classes because it will cause circular include dependencies. // This file is included by TensorBody.h, which defines the Tensor class. #include namespace at { namespace _ops { struct TORCH_API squeeze { using schema = at::Tensor (const at::Tensor &); using ptr_schema = schema*; // See Note [static constexpr char* members for windows NVCC] static constexpr const char* name = "aten::squeeze"; static constexpr const char* overload_name = ""; static constexpr const char* schema_str = "squeeze(Tensor(a) self) -> Tensor(a)"; static at::Tensor call(const at::Tensor & self); static at::Tensor redispatch(c10::DispatchKeySet dispatchKeySet, const at::Tensor & self); }; struct TORCH_API squeeze_dim { using schema = at::Tensor (const at::Tensor &, int64_t); using ptr_schema = schema*; // See Note [static constexpr char* members for windows NVCC] static constexpr const char* name = "aten::squeeze"; static constexpr const char* overload_name = "dim"; static constexpr const char* schema_str = "squeeze.dim(Tensor(a) self, int dim) -> Tensor(a)"; static at::Tensor call(const at::Tensor & self, int64_t dim); static at::Tensor redispatch(c10::DispatchKeySet dispatchKeySet, const at::Tensor & self, int64_t dim); }; struct TORCH_API squeeze_dimname { using schema = at::Tensor (const at::Tensor &, at::Dimname); using ptr_schema = schema*; // See Note [static constexpr char* members for windows NVCC] static constexpr const char* name = "aten::squeeze"; static constexpr const char* overload_name = "dimname"; static constexpr const char* schema_str = "squeeze.dimname(Tensor(a) self, Dimname dim) -> Tensor(a)"; static at::Tensor call(const at::Tensor & self, at::Dimname dim); static at::Tensor redispatch(c10::DispatchKeySet dispatchKeySet, const at::Tensor & self, at::Dimname dim); }; struct TORCH_API squeeze_dims { using schema = at::Tensor (const at::Tensor &, at::IntArrayRef); using ptr_schema = schema*; // See Note [static constexpr char* members for windows NVCC] static constexpr const char* name = "aten::squeeze"; static constexpr const char* overload_name = "dims"; static constexpr const char* schema_str = "squeeze.dims(Tensor(a) self, int[] dim) -> Tensor(a)"; static at::Tensor call(const at::Tensor & self, at::IntArrayRef dim); static at::Tensor redispatch(c10::DispatchKeySet dispatchKeySet, const at::Tensor & self, at::IntArrayRef dim); }; struct TORCH_API squeeze_ { using schema = at::Tensor & (at::Tensor &); using ptr_schema = schema*; // See Note [static constexpr char* members for windows NVCC] static constexpr const char* name = "aten::squeeze_"; static constexpr const char* overload_name = ""; static constexpr const char* schema_str = "squeeze_(Tensor(a!) self) -> Tensor(a!)"; static at::Tensor & call(at::Tensor & self); static at::Tensor & redispatch(c10::DispatchKeySet dispatchKeySet, at::Tensor & self); }; struct TORCH_API squeeze__dim { using schema = at::Tensor & (at::Tensor &, int64_t); using ptr_schema = schema*; // See Note [static constexpr char* members for windows NVCC] static constexpr const char* name = "aten::squeeze_"; static constexpr const char* overload_name = "dim"; static constexpr const char* schema_str = "squeeze_.dim(Tensor(a!) self, int dim) -> Tensor(a!)"; static at::Tensor & call(at::Tensor & self, int64_t dim); static at::Tensor & redispatch(c10::DispatchKeySet dispatchKeySet, at::Tensor & self, int64_t dim); }; struct TORCH_API squeeze__dims { using schema = at::Tensor & (at::Tensor &, at::IntArrayRef); using ptr_schema = schema*; // See Note [static constexpr char* members for windows NVCC] static constexpr const char* name = "aten::squeeze_"; static constexpr const char* overload_name = "dims"; static constexpr const char* schema_str = "squeeze_.dims(Tensor(a!) self, int[] dim) -> Tensor(a!)"; static at::Tensor & call(at::Tensor & self, at::IntArrayRef dim); static at::Tensor & redispatch(c10::DispatchKeySet dispatchKeySet, at::Tensor & self, at::IntArrayRef dim); }; struct TORCH_API squeeze__dimname { using schema = at::Tensor & (at::Tensor &, at::Dimname); using ptr_schema = schema*; // See Note [static constexpr char* members for windows NVCC] static constexpr const char* name = "aten::squeeze_"; static constexpr const char* overload_name = "dimname"; static constexpr const char* schema_str = "squeeze_.dimname(Tensor(a!) self, Dimname dim) -> Tensor(a!)"; static at::Tensor & call(at::Tensor & self, at::Dimname dim); static at::Tensor & redispatch(c10::DispatchKeySet dispatchKeySet, at::Tensor & self, at::Dimname dim); }; }} // namespace at::_ops