!105 register not equal distributed op

Merge pull request !105 from lichen/register_not_equal_distributed_op
pull/105/MERGE
mindspore-ci-bot 5 years ago committed by Gitee
commit ad88c55859

@ -180,6 +180,7 @@ constexpr char SIGMOID[] = "Sigmoid";
constexpr char POW[] = "Pow";
constexpr char MAXIMUM[] = "Maximum";
constexpr char EQUAL[] = "Equal";
constexpr char NOT_EQUAL[] = "NotEqual";
constexpr char LOGICALNOT[] = "LogicalNot";
constexpr char GATHERV2[] = "GatherV2";
constexpr char STRIDEDSLICE[] = "StridedSlice";

@ -95,6 +95,7 @@ std::vector<std::string> splittable_op_ = {MATMUL,
POW,
MAXIMUM,
EQUAL,
NOT_EQUAL,
LOGICALNOT,
GATHERV2,
STRIDEDSLICE,

Loading…
Cancel
Save