Home
last modified time | relevance | path

Searched refs:move_op (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dreorder_elementwise_unary.cc84 std::unique_ptr<Operator>& move_op = *it; in Run() local
85 if (!IsMoveOperator(move_op->type)) { in Run()
105 const string input_name = move_op->inputs[0]; in Run()
109 LogName(*move_op)); in Run()
125 move_op->inputs[0] = new_intermediate_name; in Run()
126 move_op->outputs[0] = output_name; in Run()
139 move_op->inputs[0] = output_name; in Run()
145 model->EraseArray(move_op->outputs[0]); in Run()
149 model->GetOrCreateArray(move_op->outputs[0]); in Run()
152 element_op.swap(move_op); in Run()
/external/v8/src/compiler/
Dregister-allocator.cc876 for (MoveOperands* move_op : *move) { in CommitSpillMoves()
877 if (move_op->IsEliminated()) continue; in CommitSpillMoves()
878 if (move_op->source().Equals(*to_spill->operand) && in CommitSpillMoves()
879 move_op->destination().Equals(op)) { in CommitSpillMoves()
881 if (has_preassigned_slot()) move_op->Eliminate(); in CommitSpillMoves()