Home
last modified time | relevance | path

Searched defs:transpose_b (Results 1 – 25 of 25) sorted by relevance

/third_party/mindspore/mindspore/core/ops/
Daffine.cc22 …nit(const std::vector<int64_t> &contexts, int64_t output_dim, bool transpose_a, bool transpose_b) { in Init()
37 void Affine::set_transpose_b(bool transpose_b) { (void)AddAttr(kTransposeB, MakeValue(transpose_b))… in set_transpose_b()
Dmat_mul.cc43 bool transpose_b = GetValue<bool>(transpose_b_ptr); in MatMulInferShape() local
103 void MatMul::Init(bool transpose_a, bool transpose_b) { in Init()
110 void MatMul::set_transpose_b(bool transpose_b) { (void)AddAttr(kTransposeB, MakeValue(transpose_b))… in set_transpose_b()
Dbatch_matmul.cc56 bool transpose_b = GetValue<bool>(transpose_b_ptr); in BatchMatmulInferShape() local
129 void BatchMatmul::Init(bool transpose_a, bool transpose_b) { in Init()
136 void BatchMatmul::set_transpose_b(bool transpose_b) { (void)AddAttr(kTransposeB, MakeValue(transpos… in set_transpose_b()
/third_party/mindspore/tests/st/ops/gpu/
Dtest_batch_matmul.py28 def __init__(self, transpose_a=False, transpose_b=False): argument
168 def __init__(self, transpose_a=False, transpose_b=False): argument
/third_party/mindspore/tests/st/ops/cpu/
Dtest_matmul.py27 def __init__(self, transpose_a=False, transpose_b=False): argument
Dtest_batch_matmul.py27 def __init__(self, transpose_a=False, transpose_b=False): argument
/third_party/mindspore/tests/ut/python/parallel/
Dtest_batch_matmul.py25 …def __init__(self, mul_weight, batch_matmul_weight, transpose_b=False, strategy1=None, strategy2=N… argument
Dtest_auto_star_elimination.py53 def __init__(self, transpose_a=False, transpose_b=False): argument
/third_party/mindspore/tests/ut/cpp/parallel/
Dstep_auto_parallel_test.cc76 ValuePtr transpose_b = MakeValue(false); in Create_Node() local
118 ValuePtr transpose_b = MakeValue(false); in Create_two_nodes() local
Dstep_parallel_test.cc153 ValuePtr transpose_b = MakeValue(false); in Make_Manager() local
347 ValuePtr transpose_b = MakeValue(false); in TEST_F() local
502 ValuePtr transpose_b = MakeValue(false); in TEST_F() local
/third_party/mindspore/mindspore/ops/_op_impl/_custom_op/
Dbatch_matmul_impl.py190 transpose_b=True, kernel_name="batchmatmul"): argument
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/auto_parallel/rec_core/
Drec_parse_graph.cc124 bool transpose_b = attrs[TRANSPOSE_B]->cast<BoolImmPtr>()->value(); in Complete2DInputs() local
Drec_generate_strategy.cc70 bool transpose_b = attrs[TRANSPOSE_B]->cast<BoolImmPtr>()->value(); in PrepareMatMul() local
/third_party/mindspore/mindspore/core/abstract/
Dprim_maths.cc286 bool transpose_b = GetValue<bool>(transpose_b_ptr); in InferImplMatMul() local
353 bool transpose_b = GetValue<bool>(transpose_b_ptr); in InferImplBatchMatMul() local
/third_party/mindspore/tests/st/auto_parallel/
Dparallel_strategy_search.py183 test_size, prelu_size, transpose_b, matmul_size, num_class): argument
/third_party/mindspore/mindspore/ops/composite/
Dmath_ops.py671 def _infer_shape_rem(shape1, shape2, ndim1, ndim2, transpose_b): argument
/third_party/mindspore/mindspore/parallel/nn/
Dlayers.py330 transpose_b=True, argument
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/ops_info/
Dmatmul_info.cc35 …evMatrixShape(const Dimensions &mat_a_strategy, const Dimensions &mat_b_strategy, bool transpose_b, in SetDevMatrixShape()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/trt_pass/
Dtrt_op_converter.cc529 const auto &transpose_b = AnfAlgo::GetNodeAttr<bool>(node, "transpose_b"); in MS_TRT_CONVERTER_FUNC_REG() local
575 const auto &transpose_b = AnfAlgo::GetNodeAttr<bool>(node, "transpose_b"); in MS_TRT_CONVERTER_FUNC_REG() local
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/graph_kernel/model/
Dop_node.cc472 auto transpose_b = GetValue<bool>(attrs.find("transpose_b")->second); in InferShape() local
/third_party/mindspore/mindspore/ops/operations/
D_thor_ops.py284 def __init__(self, transpose_a=False, transpose_b=False): argument
Dmath_ops.py1151 def __init__(self, transpose_a=False, transpose_b=False): argument
1256 def __init__(self, transpose_a=False, transpose_b=False): argument
/third_party/mindspore/mindspore/numpy/
Dmath_ops.py3024 def _infer_shape_rem(shape1, shape2, ndim1, ndim2, transpose_b): argument
/third_party/mindspore/mindspore/ccsrc/transform/express_ir/
Donnx_exporter.cc1064 auto transpose_b = GetValue<bool>(prim->GetAttr("transpose_b")); in ExportPrimBatchMatMul() local
/third_party/mindspore/mindspore/lite/mindir/src/
Dmindir.cc2093 PrimitivePtr MindIR_MatMulFusion_CreatePrimitive(bool transpose_a, bool transpose_b, ActivationType… in MindIR_MatMulFusion_CreatePrimitive()
2149 void MindIR_MatMulFusion_SetTransposeB(PrimitivePtr *primitive, bool transpose_b) { in MindIR_MatMulFusion_SetTransposeB()