#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::where.self(Tensor condition, Tensor self, Tensor other) -> Tensor inline at::Tensor where(const at::Tensor & condition, const at::Tensor & self, const at::Tensor & other) { return at::_ops::where_self::call(condition, self, other); } // aten::where.self_out(Tensor condition, Tensor self, Tensor other, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & where_out(at::Tensor & out, const at::Tensor & condition, const at::Tensor & self, const at::Tensor & other) { return at::_ops::where_self_out::call(condition, self, other, out); } // aten::where.self_out(Tensor condition, Tensor self, Tensor other, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & where_outf(const at::Tensor & condition, const at::Tensor & self, const at::Tensor & other, at::Tensor & out) { return at::_ops::where_self_out::call(condition, self, other, out); } // aten::where.ScalarSelf(Tensor condition, Scalar self, Tensor other) -> Tensor inline at::Tensor where(const at::Tensor & condition, const at::Scalar & self, const at::Tensor & other) { return at::_ops::where_ScalarSelf::call(condition, self, other); } // aten::where.ScalarOther(Tensor condition, Tensor self, Scalar other) -> Tensor inline at::Tensor where(const at::Tensor & condition, const at::Tensor & self, const at::Scalar & other) { return at::_ops::where_ScalarOther::call(condition, self, other); } // aten::where.Scalar(Tensor condition, Scalar self, Scalar other) -> Tensor inline at::Tensor where(const at::Tensor & condition, const at::Scalar & self, const at::Scalar & other) { return at::_ops::where_Scalar::call(condition, self, other); } // aten::where(Tensor condition) -> Tensor[] inline ::std::vector where(const at::Tensor & condition) { return at::_ops::where::call(condition); } }