#pragma once // @generated by torchgen/gen.py from Function.h #include #include #include #include #include #include #include #include #include #include #include #include #include namespace at { // aten::cross.out(Tensor self, Tensor other, int? dim=None, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & cross_out(at::Tensor & out, const at::Tensor & self, const at::Tensor & other, c10::optional dim=c10::nullopt) { return at::_ops::cross_out::call(self, other, dim, out); } // aten::cross.out(Tensor self, Tensor other, int? dim=None, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & cross_outf(const at::Tensor & self, const at::Tensor & other, c10::optional dim, at::Tensor & out) { return at::_ops::cross_out::call(self, other, dim, out); } // aten::cross(Tensor self, Tensor other, int? dim=None) -> Tensor inline at::Tensor cross(const at::Tensor & self, const at::Tensor & other, c10::optional dim=c10::nullopt) { return at::_ops::cross::call(self, other, dim); } }