Home
last modified time | relevance | path

Searched refs:dst_node (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/compiler/nir/
Dnir_opt_find_array_copies.c437 struct match_node *dst_node = in handle_write() local
443 if (nir_src_as_uint((*instr)->arr.index) != dst_node->next_array_idx) in handle_write()
446 if (dst_node->next_array_idx == 0) { in handle_write()
451 nir_deref_path_init(&dst_node->first_src_path, src, state->dead_ctx); in handle_write()
455 bool result = try_match_deref(&dst_node->first_src_path, in handle_write()
456 &dst_node->src_wildcard_idx, in handle_write()
457 &src_path, dst_node->next_array_idx, in handle_write()
475 if (dst_node->last_successful_write < dst_node->last_overwritten) in handle_write()
478 dst_node->last_successful_write = write_index; in handle_write()
483 dst_node->next_array_idx++; in handle_write()
[all …]
/third_party/skia/third_party/externals/tint/src/ast/
Dmodule_clone_test.cc143 for (auto* dst_node : dst.ASTNodes().Objects()) { in TEST() local
144 ASSERT_EQ(src_nodes.count(dst_node), 0u); in TEST()
/third_party/skia/third_party/externals/tint/fuzzers/
Dtint_ast_clone_fuzzer.cc84 for (auto* dst_node : dst.ASTNodes().Objects()) { in LLVMFuzzerTestOneInput() local
85 ASSERT_EQ(src_nodes.count(dst_node), 0u); in LLVMFuzzerTestOneInput()
/third_party/mindspore/patches/
D0036-new-dynamic-quant-algorigthm-and-init-packed.patch4746 + for (auto &dst_node : meta_graph->nodes) {
4747 + if (dst_node->primitive == nullptr || dst_node->primitive->value.type != schema::PrimitiveType…
4750 + MS_CHECK_TRUE_MSG(dst_node->inputIndex.size() >= kInputSize1, RET_ERROR, "inputs size is wrong…
4751 + auto a_index = dst_node->inputIndex[FIRST_INPUT];
4756 + auto b_index = dst_node->inputIndex[SECOND_INPUT];
4769 + auto ret = ReplaceMatMulFusionToCustom(meta_graph, dst_node, b_input, cpu_option);