Home
last modified time | relevance | path

Searched refs:instruction_index (Results 1 – 12 of 12) sorted by relevance

/external/angle/third_party/spirv-tools/src/source/fuzz/
Dtransformation_add_function.cpp252 uint32_t instruction_index = 1; in TryToAddFunction() local
258 while (instruction_index < num_instructions && in TryToAddFunction()
259 spv::Op(message_.instruction(instruction_index).opcode()) == in TryToAddFunction()
262 ir_context, message_.instruction(instruction_index))); in TryToAddFunction()
263 instruction_index++; in TryToAddFunction()
267 if (instruction_index == num_instructions || in TryToAddFunction()
268 spv::Op(message_.instruction(instruction_index).opcode()) != in TryToAddFunction()
275 while (instruction_index < num_instructions && in TryToAddFunction()
276 spv::Op(message_.instruction(instruction_index).opcode()) != in TryToAddFunction()
279 assert(spv::Op(message_.instruction(instruction_index).opcode()) == in TryToAddFunction()
[all …]
/external/deqp-deps/SPIRV-Tools/source/fuzz/
Dtransformation_add_function.cpp252 uint32_t instruction_index = 1; in TryToAddFunction() local
258 while (instruction_index < num_instructions && in TryToAddFunction()
259 spv::Op(message_.instruction(instruction_index).opcode()) == in TryToAddFunction()
262 ir_context, message_.instruction(instruction_index))); in TryToAddFunction()
263 instruction_index++; in TryToAddFunction()
267 if (instruction_index == num_instructions || in TryToAddFunction()
268 spv::Op(message_.instruction(instruction_index).opcode()) != in TryToAddFunction()
275 while (instruction_index < num_instructions && in TryToAddFunction()
276 spv::Op(message_.instruction(instruction_index).opcode()) != in TryToAddFunction()
279 assert(spv::Op(message_.instruction(instruction_index).opcode()) == in TryToAddFunction()
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dtransformation_add_function.cpp252 uint32_t instruction_index = 1; in TryToAddFunction() local
258 while (instruction_index < num_instructions && in TryToAddFunction()
259 spv::Op(message_.instruction(instruction_index).opcode()) == in TryToAddFunction()
262 ir_context, message_.instruction(instruction_index))); in TryToAddFunction()
263 instruction_index++; in TryToAddFunction()
267 if (instruction_index == num_instructions || in TryToAddFunction()
268 spv::Op(message_.instruction(instruction_index).opcode()) != in TryToAddFunction()
275 while (instruction_index < num_instructions && in TryToAddFunction()
276 spv::Op(message_.instruction(instruction_index).opcode()) != in TryToAddFunction()
279 assert(spv::Op(message_.instruction(instruction_index).opcode()) == in TryToAddFunction()
[all …]
/external/perfetto/test/trace_processor/diff_tests/parser/etm/
Diterate_instructions.out1 "element_index","instruction_index","address","opcode","type","branch_address","is_conditional","is…
/external/pytorch/torch/csrc/jit/runtime/interpreter/
Dcode_impl.h919 int32_t instruction_index, in assert_stack_size()
923 const auto& schema = full_operator_table_[instruction_index].schema(); in assert_stack_size()
935 toString(full_operator_table_[instruction_index].schema())); in assert_stack_size()
/external/python/cpython3/Lib/
Dtraceback.py414 def _get_code_position(code, instruction_index): argument
415 if instruction_index < 0:
418 return next(itertools.islice(positions_gen, instruction_index // 2, None))
Dinspect.py1649 code, instruction_index = tb.tb_frame.f_code, tb.tb_lasti
1650 return _get_code_position(code, instruction_index)
1652 def _get_code_position(code, instruction_index): argument
1653 if instruction_index < 0:
1657 return next(itertools.islice(positions_gen, instruction_index // 2, None))
/external/tensorflow/tensorflow/compiler/xla/service/
Dmemory_space_assignment.cc4110 for (int64_t instruction_index = 0;; ++instruction_index) { in FixSchedule() local
4111 auto insts_before_iter = schedule_before_.find(instruction_index); in FixSchedule()
4115 VLOG(4) << "before " << instruction_index << ": " in FixSchedule()
4125 if (instruction_index >= flattened_instructions_.size()) { in FixSchedule()
4128 HloInstruction* instruction = flattened_instructions_[instruction_index]; in FixSchedule()
4137 VLOG(4) << "inst " << instruction_index << ": " << instruction->name(); in FixSchedule()
4141 auto insts_after_iter = schedule_after_.find(instruction_index); in FixSchedule()
4145 VLOG(4) << "after " << instruction_index << ": " in FixSchedule()
Dhlo_rematerialization.cc1938 int64_t instruction_index = 0; in RematerializeComputation() local
1949 << ", callee usage = " << callee_usage << ", [" << instruction_index in RematerializeComputation()
1951 instruction_index++; in RematerializeComputation()
/external/vulkan-validation-layers/layers/
Dgpu_validation.cpp959 uint32_t instruction_index = 0; in GenerateSourceMessages() local
970 if (instruction_index == debug_record[kInstCommonOutInstructionIdx]) { in GenerateSourceMessages()
973 instruction_index++; in GenerateSourceMessages()
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder.h1064 int64_t instruction_index; member
1547 .instructions(imported.instruction_index)); in LookUpInstructionByHandleInternal()
Dxla_builder.cc4002 imported_instruction.instruction_index = i; in AddCalledComputation()