#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::moveaxis.intlist(Tensor(a) self, int[] source, int[] destination) -> Tensor(a) inline at::Tensor moveaxis(const at::Tensor & self, at::IntArrayRef source, at::IntArrayRef destination) { return at::_ops::moveaxis_intlist::call(self, source, destination); } // aten::moveaxis.int(Tensor(a) self, int source, int destination) -> Tensor(a) inline at::Tensor moveaxis(const at::Tensor & self, int64_t source, int64_t destination) { return at::_ops::moveaxis_int::call(self, source, destination); } } #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)