Program Listing for File where.h

Return to documentation for file (include/converter/include/ops/where.h)

#ifndef MINDSPORE_CORE_OPS_WHERE_H_
#define MINDSPORE_CORE_OPS_WHERE_H_
#include <memory>
#include <vector>

#include "mindapi/base/types.h"
#include "ops/base_operator.h"

namespace mindspore {
namespace ops {
constexpr auto kNameWhere = "Where";
class MIND_API Where : public BaseOperator {
 public:
  MIND_API_BASE_MEMBER(Where);
  Where() : BaseOperator(kNameWhere) { InitIOName({"condition"}, {"output"}); }

  void Init() const {}
};

MIND_API abstract::AbstractBasePtr WhereInfer(const abstract::AnalysisEnginePtr &, const PrimitivePtr &primitive,
                                              const std::vector<abstract::AbstractBasePtr> &input_args);
}  // namespace ops
}  // namespace mindspore

#endif  // MINDSPORE_CORE_OPS_WHERE_H_