Home
last modified time | relevance | path

Searched refs:mul_op (Results 1 – 8 of 8) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/
Ddisasm.c252 switch (instr->mul_op) { in print_mul()
267 if (instr->mul_op == gpir_codegen_mul_op_complex2) in print_mul()
350 fprintf(fp, "\tunknown%u.m01 ", instr->mul_op); in print_mul()
Dcodegen.c126 code->mul_op = gpir_codegen_mul_op_complex1; in gpir_codegen_mul0_slot()
132 code->mul_op = gpir_codegen_mul_op_complex2; in gpir_codegen_mul0_slot()
138 code->mul_op = gpir_codegen_mul_op_select; in gpir_codegen_mul0_slot()
Dcodegen.h156 gpir_codegen_mul_op mul_op : 3; member
/third_party/mesa3d/src/compiler/nir/
Dnir_loop_analyze.c812 nir_op mul_op; in test_iterations() local
817 mul_op = nir_op_fmul; in test_iterations()
823 mul_op = nir_op_imul; in test_iterations()
834 eval_const_binop(mul_op, bit_size, iter_src, step, execution_mode); in test_iterations()
/third_party/mesa3d/src/gallium/drivers/vc4/
Dvc4_qpu_schedule.c327 uint32_t mul_op = QPU_GET_FIELD(inst, QPU_OP_MUL); in calculate_deps() local
349 if (mul_op != QPU_M_NOP) { in calculate_deps()
/third_party/node/deps/v8/src/compiler/backend/arm64/
Dinstruction-selector-arm64.cc3837 InstructionCode mla_code, IrOpcode::Value mul_op) { in MlaHelper() argument
3839 SimdAddOpMatcher m(node, mul_op); in MlaHelper()
/third_party/mindspore/patches/
D0006-remove-lite-expression-fix-double-loadso.patch2789 - auto mul_op = NN::Mul();
2790 - if (mul_op == nullptr) {
2791 - MS_LOG(ERROR) << "Cannot allocate mul_op";
2794 - PushOp(mul_op);
2796 - auto bc_y = (*neg_op)((*mul_op)({bc_x, o})).front();
D0005-micro-for-ohos.patch8751 + auto mul_op = std::make_shared<PatternOp>();
8752 + MS_CHECK_TRUE_RET(mul_op != nullptr, RET_NULL_PTR);
8753 + mul_op->id = MulName;
8754 + mul_op->types = {schema::PrimitiveType_MatMulFusion};
8759 + add_op->left = mul_op;
8765 + fusion_pattern->AddPatternOp(mul_op);