Home
last modified time | relevance | path

Searched refs:OperatorName (Results 1 – 25 of 25) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/frontend/parallel/graph_util/
Dgenerate_graph.h35 std::string GetOpPythonPath(const OperatorName &op_name);
38 ValuePtr CreatOpInstance(const OperatorAttrs &attrs, const OperatorName &op_name, const std::string…
54 AnfNodePtr NewOpInst(const OperatorName &op_name, const OperatorAttrs &attrs);
55 AnfNodePtr NewOpInst(const OperatorName &op_name);
Dgenerate_graph.cc31 std::string GetOpPythonPath(const OperatorName &op_name) { in GetOpPythonPath()
53 ValuePtr CreatOpInstance(const OperatorAttrs &attrs, const OperatorName &op_name, const std::string… in CreatOpInstance()
174 AnfNodePtr GenerateGraph::NewOpInst(const OperatorName &op_name, const OperatorAttrs &attrs) { in NewOpInst()
184 AnfNodePtr GenerateGraph::NewOpInst(const OperatorName &op_name) { in NewOpInst()
/third_party/mindspore/tests/ut/cpp/parallel/tensor_layout/
Dtensor_redistribution_test.cc95 std::vector<OperatorName> op_names; in TEST_F()
99 std::vector<OperatorName> expected_op_names = {"Reshape", "StridedSlice", "AllGather", "Split", in TEST_F()
148 std::vector<OperatorName> op_names; in TEST_F()
152 std::vector<OperatorName> expected_op_names = {"AllGather", "StridedSlice"}; in TEST_F()
201 std::vector<OperatorName> op_names; in TEST_F()
205 std::vector<OperatorName> expected_op_names = {"Reshape"}; in TEST_F()
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/tensor_layout/
Dredistribution_operator_infer.h35 using OperatorR = std::pair<OperatorName, Args>;
59 Status InsertOperator(const OperatorName &name, const Args &args);
Dredistribution_operator_infer.cc191 Status RedistributionOperatorInfer::InsertOperator(const OperatorName &name, const Args &args) { in InsertOperator()
/third_party/flutter/skia/src/sksl/
DSkSLASTNode.cpp19 Compiler::OperatorName(getToken().fKind) + " " + in description()
164 return this->begin()->description() + Compiler::OperatorName(getToken().fKind); in description()
166 return Compiler::OperatorName(getToken().fKind) + this->begin()->description(); in description()
DSkSLCompiler.h149 static const char* OperatorName(Token::Kind token);
DSkSLMetalCodeGenerator.cpp705 String op = Compiler::OperatorName(b.fOperator); in writeBinaryExpression()
710 this->write(String(" ") + Compiler::OperatorName(b.fOperator) + " "); in writeBinaryExpression()
738 this->write(Compiler::OperatorName(p.fOperator)); in writePrefixExpression()
751 this->write(Compiler::OperatorName(p.fOperator)); in writePostfixExpression()
DSkSLGLSLCodeGenerator.cpp938 this->write(Compiler::OperatorName(b.fOperator)); in writeFunctionCall()
998 this->write(Compiler::OperatorName(p.fOperator)); in writeFunctionCall()
1011 this->write(Compiler::OperatorName(p.fOperator)); in writeFunctionCall()
DSkSLIRGenerator.cpp1680 Compiler::OperatorName(expression.getToken().fKind) + in convertBinaryExpression()
2059 String("'") + Compiler::OperatorName(expression.getToken().fKind) + in convertPrefixExpression()
2068 String("'") + Compiler::OperatorName(expression.getToken().fKind) + in convertPrefixExpression()
2077 String("'") + Compiler::OperatorName(expression.getToken().fKind) + in convertPrefixExpression()
2089 String("'") + Compiler::OperatorName(expression.getToken().fKind) + in convertPrefixExpression()
2433 "'" + String(Compiler::OperatorName(expression.getToken().fKind)) + in convertPostfixExpression()
DSkSLByteCodeGenerator.cpp741 Compiler::OperatorName(op))); in writeBinaryExpression()
DSkSLCompiler.cpp1522 const char* Compiler::OperatorName(Token::Kind kind) { in OperatorName() function in SkSL::Compiler
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
DItaniumDemangle.h1913 StringView OperatorName; variable
1919 : Node(KFoldExpr), Pack(Pack_), Init(Init_), OperatorName(OperatorName_), in FoldExpr()
1923 F(IsLeftFold, OperatorName, Pack, Init); in match()
1940 S += OperatorName; in printLeft()
1945 S += OperatorName; in printLeft()
1952 S += OperatorName; in printLeft()
1957 S += OperatorName; in printLeft()
4345 StringView OperatorName; in parseFoldExpr() local
4346 if (consumeIf("aa")) OperatorName = "&&"; in parseFoldExpr()
4347 else if (consumeIf("an")) OperatorName = "&"; in parseFoldExpr()
[all …]
/third_party/flutter/skia/src/sksl/ir/
DSkSLPostfixExpression.h35 return fOperand->description() + Compiler::OperatorName(fOperator); in description()
DSkSLBinaryExpression.h48 return "(" + fLeft->description() + " " + Compiler::OperatorName(fOperator) + " " + in description()
DSkSLPrefixExpression.h69 return Compiler::OperatorName(fOperator) + fOperand->description(); in description()
/third_party/mindspore/tests/ut/cpp/parallel/
Dstep_parallel_test.cc207 OperatorName operator_name = "AllReduce"; in TEST_F()
214 OperatorName operator_name = "Add"; in TEST_F()
282 OperatorName op_name = "AllReduce"; in TEST_F()
337 OperatorName op_name = "ABC"; in TEST_F()
399 OperatorName op_name = "AllReduce"; in TEST_F()
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/auto_parallel/
Dcostmodel.h32 using OperatorName = std::string; variable
42 using Operator = std::pair<OperatorName, OperatorArgs>;
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/ops_info/
Doperator_info.cc297 OperatorName operator_name = VIRTUAL_DIV; in CreateVirtualDivOp()
325 OperatorName operator_name = ALL_REDUCE; in CreateAllReduceOp()
334 OperatorName operator_name = REDUCE_SCATTER; in CreateReduceScatterOp()
400 OperatorName operator_name = ALL_GATHER; in CreateAllGatherOp()
418 OperatorName operator_name = MINI_STEP_ALL_GATHER; in CreateMiniStepAllGatherOp()
441 OperatorName operator_name = MICRO_STEP_ALL_GATHER; in CreateMicroStepAllGatherOp()
462 OperatorName operator_name = GET_TENSOR_SLICE; in CreateGetTensorSliceOp()
500 OperatorName operator_name; in CreateMirrorOps()
Dgather_v2_info.cc206 OperatorName operator_name = SUB; in CreateSubOp()
Dgather_v2_p_info.cc723 OperatorName operator_name; in InferForwardCommunication()
843 OperatorName op_name = EMBEDDING_LOOKUP; in ComputeReplaceOp()
Dreduce_method_info.cc209 OperatorName operator1_name = REAL_DIV; in CreateReduceMeanForwardOp()
/third_party/skia/src/sksl/codegen/
DSkSLMetalCodeGenerator.h75 static const char* OperatorName(Operator op);
DSkSLMetalCodeGenerator.cpp51 const char* MetalCodeGenerator::OperatorName(Operator op) { in OperatorName() function in SkSL::MetalCodeGenerator
1646 this->write(OperatorName(op.removeAssignment())); in writeBinaryExpression()
1649 this->write(String(" ") + OperatorName(op) + " "); in writeBinaryExpression()
1685 this->write(OperatorName(p.getOperator())); in writePrefixExpression()
1698 this->write(OperatorName(p.getOperator())); in writePostfixExpression()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
DTGParser.cpp2082 StringInit *OperatorName = nullptr; in ParseSimpleValue() local
2088 OperatorName = StringInit::get(Lex.getCurStrVal()); in ParseSimpleValue()
2104 return DagInit::get(Operator, OperatorName, DagArgs); in ParseSimpleValue()