| 134 | } |
| 135 | |
| 136 | HloComputation* HloModule::AddEmbeddedComputation( |
| 137 | std::unique_ptr<HloComputation> computation) { |
| 138 | return AddComputationInternal(std::move(computation), /*is_entry=*/false, |
| 139 | /*uniquify_identifiers=*/true); |
| 140 | } |
| 141 | |
| 142 | void HloModule::ReplaceComputations( |
| 143 | const std::unordered_map<HloComputation*, HloComputation*>& replacements) { |
no outgoing calls