Home
last modified time | relevance | path

Searched refs:operand_index_ (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/SPIRV-Tools/source/reduce/
Dchange_operand_reduction_opportunity.cpp22 return inst_->NumOperands() > operand_index_ && in PreconditionHolds()
23 inst_->GetOperand(operand_index_).words[0] == original_id_ && in PreconditionHolds()
24 inst_->GetOperand(operand_index_).type == original_type_; in PreconditionHolds()
28 inst_->SetOperand(operand_index_, {new_id_}); in Apply()
Dchange_operand_to_undef_reduction_opportunity.cpp25 return inst_->NumOperands() > operand_index_ && in PreconditionHolds()
26 inst_->GetOperand(operand_index_).words[0] == original_id_; in PreconditionHolds()
30 auto operand = inst_->GetOperand(operand_index_); in Apply()
37 inst_->SetOperand(operand_index_, {undef_id}); in Apply()
Dchange_operand_to_undef_reduction_opportunity.h35 operand_index_(operand_index), in ChangeOperandToUndefReductionOpportunity()
46 const uint32_t operand_index_; variable
Dchange_operand_reduction_opportunity.h33 operand_index_(operand_index), in ChangeOperandReductionOpportunity()
45 const uint32_t operand_index_; variable
/external/deqp-deps/SPIRV-Tools/source/reduce/
Dchange_operand_reduction_opportunity.cpp22 return inst_->NumOperands() > operand_index_ && in PreconditionHolds()
23 inst_->GetOperand(operand_index_).words[0] == original_id_ && in PreconditionHolds()
24 inst_->GetOperand(operand_index_).type == original_type_; in PreconditionHolds()
28 inst_->SetOperand(operand_index_, {new_id_}); in Apply()
Dchange_operand_to_undef_reduction_opportunity.cpp25 return inst_->NumOperands() > operand_index_ && in PreconditionHolds()
26 inst_->GetOperand(operand_index_).words[0] == original_id_; in PreconditionHolds()
30 auto operand = inst_->GetOperand(operand_index_); in Apply()
37 inst_->SetOperand(operand_index_, {undef_id}); in Apply()
Dchange_operand_to_undef_reduction_opportunity.h35 operand_index_(operand_index), in ChangeOperandToUndefReductionOpportunity()
46 const uint32_t operand_index_; variable
Dchange_operand_reduction_opportunity.h33 operand_index_(operand_index), in ChangeOperandReductionOpportunity()
45 const uint32_t operand_index_; variable
/external/tensorflow/tensorflow/compiler/xla/service/
Dpattern_matcher.h1303 : operand_index_(operand_index), operand_(operand) {}
1314 *os << "with operand " << operand_index_ << " which is:";
1322 if (operand_index_ >= inst->operand_count()) {
1323 EXPLAIN << "desired operand index " << operand_index_
1327 if (!operand_.Match(HloOperand(inst, operand_index_), option)) {
1328 EXPLAIN << "\nin operand " << operand_index_;
1334 int64 operand_index_;