Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_instruction.cc1522 if (operand->user_set_.find(this) != operand->user_set_.end()) { in ~HloInstruction()
1705 if (!ContainsKey(user_set_, user)) { in AddUser()
1706 user_set_.insert(user); in AddUser()
1879 auto set_it = user_set_.find(user); in RemoveUser()
1880 CHECK(set_it != user_set_.end()); in RemoveUser()
1881 user_set_.erase(set_it); in RemoveUser()
1976 user_set_.clear(); in ReplaceAllUsesWithDifferentShape()
Dhlo_instruction.h856 return ContainsKey(instruction->user_set_, this); in IsUserOf()
1754 absl::flat_hash_set<const HloInstruction*> user_set_; variable