Searched defs:ComplexOp (Results 1 – 3 of 3) sorted by relevance
34 struct ComplexOp { struct35 typedef std::complex<T> result_type;36 …esult_type operator()(const T &real, const T &image) const { return std::complex<T>(real, image); } in operator ()()
25 from mindspore.ops import Complex as ComplexOp unknown
332 explicit ComplexOp(const std::string &op) : ElemwiseOp(op) {} in ComplexOp() function