#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::logit(Tensor self, float? eps=None) -> Tensor inline at::Tensor logit(const at::Tensor & self, c10::optional eps=c10::nullopt) { return at::_ops::logit::call(self, eps); } // aten::logit_(Tensor(a!) self, float? eps=None) -> Tensor(a!) inline at::Tensor & logit_(at::Tensor & self, c10::optional eps=c10::nullopt) { return at::_ops::logit_::call(self, eps); } // aten::logit.out(Tensor self, float? eps=None, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & logit_out(at::Tensor & out, const at::Tensor & self, c10::optional eps=c10::nullopt) { return at::_ops::logit_out::call(self, eps, out); } // aten::logit.out(Tensor self, float? eps=None, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & logit_outf(const at::Tensor & self, c10::optional eps, at::Tensor & out) { return at::_ops::logit_out::call(self, eps, out); } }