HomeSort by relevance Sort by last modified time
    Searched defs:inst_it (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_cse.cc 53 auto inst_it = computation->instructions().begin(); local
54 while (inst_it != computation->instructions().end()) {
55 HloInstruction* instruction = *inst_it;
59 ++inst_it;
hlo_computation.cc 238 auto inst_it = instruction_iterators_.at(instruction); local
239 (*inst_it)->set_parent(nullptr);
241 instructions_.erase(inst_it);
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
spirv_stats.cpp 196 auto inst_it = vstate_->ordered_instructions().rbegin(); local
197 const SpvOp opcode = inst_it->opcode();
201 (uint32_t(inst_it->operands().size()) << 16) | uint32_t(opcode);
204 ++inst_it;
206 if (inst_it != vstate_->ordered_instructions().rend()) {
207 const SpvOp prev_opcode = inst_it->opcode();
213 for (; inst_it != vstate_->ordered_instructions().rend() &&
214 step_it != stats_->opcode_markov_hist.end(); ++inst_it, ++step_it) {
215 auto& hist = (*step_it)[inst_it->opcode()];

Completed in 185 milliseconds