Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/service/
Dlayout_assignment.cc271 auto iter = operand_constraints_.find(key); in SetOperandLayout()
272 if (iter == operand_constraints_.end()) { in SetOperandLayout()
277 iter = operand_constraints_.insert(pair).first; in SetOperandLayout()
394 auto it = operand_constraints_.find(std::make_pair(instruction, operand_no)); in GetOperandLayoutConstraint()
395 return it == operand_constraints_.end() ? nullptr : &it->second; in GetOperandLayoutConstraint()
Dlayout_assignment.h237 std::map<OperandConstraintKey, OperandLayoutConstraint> operand_constraints_; variable