Home
last modified time | relevance | path

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

12

/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_pass.h65 virtual bool visit(fetch_node &n, bool enter);
109 virtual bool visit(fetch_node &n, bool enter);
115 void dump(fetch_node& n);
136 virtual bool visit(fetch_node &n, bool enter);
183 virtual bool visit(fetch_node &n, bool enter);
325 virtual bool visit(fetch_node &n, bool enter);
379 virtual bool visit(fetch_node &n, bool enter);
604 virtual bool visit(fetch_node &n, bool enter);
658 virtual bool visit(fetch_node &n, bool enter);
712 void emit_set_grad(fetch_node* f);
[all …]
Dsb_ir.cpp38 bool fetch_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } in accept()
307 bool fetch_node::fold_dispatch(expr_handler* ex) { return ex->fold(*this); } in fold_dispatch()
384 fetch_node *c = static_cast<fetch_node*>(this); in is_fetch_op()
418 fetch_node *c = static_cast<fetch_node*>(this); in fetch_op_flags()
Dsb_bc_finalize.cpp288 finalize_fetch(static_cast<fetch_node*>(n)); in run_on()
488 void bc_finalizer::copy_fetch_src(fetch_node &dst, fetch_node &src, unsigned arg_start) in copy_fetch_src()
546 void bc_finalizer::emit_set_grad(fetch_node* f) { in emit_set_grad()
554 fetch_node *n = sh.create_fetch(); in emit_set_grad()
566 void bc_finalizer::emit_set_texture_offsets(fetch_node &f) { in emit_set_texture_offsets()
569 fetch_node *n = sh.create_fetch(); in emit_set_texture_offsets()
578 void bc_finalizer::finalize_fetch(fetch_node* f) { in finalize_fetch()
Dsb_shader.cpp290 fetch_node* shader::create_fetch() { in create_fetch()
291 fetch_node* n = new (pool.allocate(sizeof(fetch_node))) fetch_node(); in create_fetch()
598 fetch_node *f = static_cast<fetch_node*>(n); in get_queue_id()
Dsb_bc.h47 class fetch_node; variable
981 int build_fetch_tex(fetch_node *n);
982 int build_fetch_vtx(fetch_node *n);
983 int build_fetch_gds(fetch_node *n);
Dsb_bc_builder.cpp130 fetch_node *f = static_cast<fetch_node*>(*I); in build_fetch_clause()
499 int bc_builder::build_fetch_tex(fetch_node* n) { in build_fetch_tex()
563 int bc_builder::build_fetch_gds(fetch_node *n) { in build_fetch_gds()
603 int bc_builder::build_fetch_vtx(fetch_node* n) { in build_fetch_vtx()
Dsb_expr.h71 bool fold(fetch_node &n);
Dsb_pass.cpp78 bool vpass::visit(fetch_node& n, bool enter) { return true; } in visit()
Dsb_peephole.cpp56 fetch_node *f = static_cast<fetch_node*>(n); in run_on()
Dsb_dump.cpp188 bool dump::visit(fetch_node& n, bool enter) { in visit()
466 dump_op(*n, static_cast<fetch_node*>(n)->bc.op_ptr->name); in dump_op()
Dsb_dce_cleanup.cpp100 bool dce_cleanup::visit(fetch_node& n, bool enter) { in visit()
Dsb_ssa_builder.cpp81 bool ssa_prepare::visit(fetch_node& n, bool enter) { in visit()
231 bool ssa_rename::visit(fetch_node& n, bool enter) { in visit()
Dsb_gvn.cpp111 bool gvn::visit(fetch_node& n, bool enter) { in visit()
Dsb_bc_dump.cpp101 bool bc_dump::visit(fetch_node& n, bool enter) { in visit()
451 void bc_dump::dump(fetch_node& n) { in dump()
Dsb_bc_parser.cpp626 fetch_node *n = sh->create_fetch(); in decode_fetch_clause()
643 fetch_node *n = static_cast<fetch_node*>(*I); in prepare_fetch_clause()
Dsb_liveness.cpp101 bool liveness::visit(fetch_node& n, bool enter) { in visit()
Dsb_shader.h362 fetch_node* create_fetch();
Dsb_ir.h1049 class fetch_node : public node {
1051 fetch_node() : node(NT_OP, NST_FETCH_INST) { memset(&bc, 0, sizeof(bc_fetch)); }; in fetch_node() function
/external/tensorflow/tensorflow/core/graph/
Dsubgraph.cc160 Node* fetch_node; in FetchOutputs() local
162 fetch_rewrites[i]->AddNode(g, {n, id.second}, &fetch_node)); in FetchOutputs()
165 (*name_index)[fetch_node->name()] = fetch_node; in FetchOutputs()
169 g->AddControlEdge(fetch_node, g->sink_node(), true); in FetchOutputs()
170 out_fetch_nodes->push_back(fetch_node); in FetchOutputs()
/external/tensorflow/tensorflow/compiler/tf2xla/
Dtf2xla.cc131 Node* fetch_node = it->second; in AddRetvalNodes() local
132 if (id.output_index() >= fetch_node->num_outputs()) { in AddRetvalNodes()
135 fetch_node->num_outputs()); in AddRetvalNodes()
141 .Input(fetch_node, id.output_index()) in AddRetvalNodes()
142 .Attr("T", BaseType(fetch_node->output_type(id.output_index()))) in AddRetvalNodes()
/external/tensorflow/tensorflow/core/common_runtime/data/
Dstandalone_test.cc156 string fetch_node; in TEST() member
165 auto s = Dataset::FromGraph({}, graph_def, test_case.fetch_node, &dataset); in TEST()
Dstandalone.cc43 const string& fetch_node, in FromGraph() argument
69 {}, {fetch_node}, &outputs)); in FromGraph()
Dstandalone.h96 const string& fetch_node,
/external/tensorflow/tensorflow/core/grappler/
Dgrappler_item_builder.cc205 for (const auto& fetch_node : cfg.fetch_nodes) { in GrapplerItemFromMetaGraphDef() local
206 new_item->fetch.emplace_back(NodeName(fetch_node)); in GrapplerItemFromMetaGraphDef()
/external/tensorflow/tensorflow/core/kernels/
Dconv_ops_test.cc553 const NodeDef* fetch_node = nullptr) { in RunAndFetch() argument
557 if (fetch_node) { in RunAndFetch()
558 *graph.add_node() = *fetch_node; in RunAndFetch()

12