#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::sqrt(Tensor self) -> Tensor inline at::Tensor sqrt(const at::Tensor & self) { return at::_ops::sqrt::call(self); } // aten::sqrt_(Tensor(a!) self) -> Tensor(a!) inline at::Tensor & sqrt_(at::Tensor & self) { return at::_ops::sqrt_::call(self); } // aten::sqrt.out(Tensor self, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & sqrt_out(at::Tensor & out, const at::Tensor & self) { return at::_ops::sqrt_out::call(self, out); } // aten::sqrt.out(Tensor self, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & sqrt_outf(const at::Tensor & self, at::Tensor & out) { return at::_ops::sqrt_out::call(self, out); } }