#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::mm(Tensor self, Tensor mat2) -> Tensor inline at::Tensor mm(const at::Tensor & self, const at::Tensor & mat2) { return at::_ops::mm::call(self, mat2); } // aten::mm.out(Tensor self, Tensor mat2, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & mm_out(at::Tensor & out, const at::Tensor & self, const at::Tensor & mat2) { return at::_ops::mm_out::call(self, mat2, out); } // aten::mm.out(Tensor self, Tensor mat2, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & mm_outf(const at::Tensor & self, const at::Tensor & mat2, at::Tensor & out) { return at::_ops::mm_out::call(self, mat2, out); } // aten::mm.dtype(Tensor self, Tensor mat2, ScalarType out_dtype) -> Tensor inline at::Tensor mm(const at::Tensor & self, const at::Tensor & mat2, at::ScalarType out_dtype) { return at::_ops::mm_dtype::call(self, mat2, out_dtype); } // aten::mm.dtype_out(Tensor self, Tensor mat2, ScalarType out_dtype, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & mm_out(at::Tensor & out, const at::Tensor & self, const at::Tensor & mat2, at::ScalarType out_dtype) { return at::_ops::mm_dtype_out::call(self, mat2, out_dtype, out); } // aten::mm.dtype_out(Tensor self, Tensor mat2, ScalarType out_dtype, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & mm_outf(const at::Tensor & self, const at::Tensor & mat2, at::ScalarType out_dtype, at::Tensor & out) { return at::_ops::mm_dtype_out::call(self, mat2, out_dtype, out); } }