Home
last modified time | relevance | path

Searched refs:kPrimBatchMatMul (Results 1 – 11 of 11) sorted by relevance

/third_party/mindspore/mindspore/core/ops/
Dbatch_matmul.h32 …BatchMatmul() : PrimitiveC(prim::kPrimBatchMatMul->name()) { InitIOName({"x1", "x2"}, {"output"});… in BatchMatmul()
Dbatch_matmul.cc157 REGISTER_PRIMITIVE_EVAL_IMPL(BatchMatmul, prim::kPrimBatchMatMul, BatchMatmulInfer, nullptr, true);
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/buffer_fusion/
Dbatchmatmul_fusedmuladd_fusion_pass.cc32 …(batch_matmul->isa<CNode>() && AnfAlgo::CheckPrimitiveType(batch_matmul, prim::kPrimBatchMatMul)) { in MatchBatchMatmulFusedMulAdd()
Dmatmul_confusiontranspose_fusion_pass.cc34 AnfAlgo::CheckPrimitiveType(matmul, prim::kPrimBatchMatMul))) { in MatchMatmulConfusionTranpose()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/ir_fission/
Ddynamic_gru_v2_grad_fission.cc291 …dePtr> matmul_inputs = {NewValueNode(std::make_shared<Primitive>(prim::kPrimBatchMatMul->name()))}; in AddDwhMatmulNode()
365 …odePtr> matmul_inputs = {NewValueNode(std::make_shared<Primitive>(prim::kPrimBatchMatMul->name())), in CreateDwxBatchMatMul()
383 …odePtr> matmul_inputs = {NewValueNode(std::make_shared<Primitive>(prim::kPrimBatchMatMul->name())), in CreateDxtBatchMatMul()
Ddynamic_rnn_grad_fission_v2.cc418 …odePtr> matmul_inputs = {NewValueNode(std::make_shared<Primitive>(prim::kPrimBatchMatMul->name())), in CreateBatchMatMul()
437 …odePtr> matmul_inputs = {NewValueNode(std::make_shared<Primitive>(prim::kPrimBatchMatMul->name())), in CreateBatchMatMul2()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/graph_kernel/
Dgraph_kernel_expander.cc67 {kGPUDevice, OpLevel_1, prim::kPrimBatchMatMul}, in GetExpandOps()
Dgraph_kernel_cluster.cc60 {kAscendDevice, OpLevel_1, prim::kPrimBatchMatMul}, in GetClusterableOpList()
/third_party/mindspore/mindspore/core/abstract/
Dprimitive_infer_map.cc103 {prim::kPrimBatchMatMul, {InferImplBatchMatMul, nullptr, true}}, in GetPrimitiveToEvalImplMap()
/third_party/mindspore/mindspore/core/base/
Dcore_ops.h468 inline const PrimitivePtr kPrimBatchMatMul = std::make_shared<Primitive>("BatchMatMul"); variable
/third_party/mindspore/mindspore/ccsrc/transform/express_ir/
Donnx_exporter.cc710 if (cnode->IsApply(prim::kPrimBatchMatMul)) { in ExportNodes()