#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::vstack(Tensor[] tensors) -> Tensor inline at::Tensor vstack(at::TensorList tensors) { return at::_ops::vstack::call(tensors); } // aten::vstack.out(Tensor[] tensors, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & vstack_out(at::Tensor & out, at::TensorList tensors) { return at::_ops::vstack_out::call(tensors, out); } // aten::vstack.out(Tensor[] tensors, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & vstack_outf(at::TensorList tensors, at::Tensor & out) { return at::_ops::vstack_out::call(tensors, out); } } #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)