Find the handle factory for the output layer which results in fewest required copies.
| 1621 | |
| 1622 | // Find the handle factory for the output layer which results in fewest required copies. |
| 1623 | ITensorHandleFactory::FactoryId CalculateSlotOptionForOutput(BackendsMap& backends, |
| 1624 | OutputSlot& slot, |
| 1625 | TensorHandleFactoryRegistry& registry) |
| 1626 | { |
| 1627 | IgnoreUnused(backends, slot, registry); |
| 1628 | return ITensorHandleFactory::DeferredFactoryId; |
| 1629 | } |
| 1630 | |
| 1631 | // For all handle factories supported on the source backend, we wish to find the one which requires the fewest copies |
| 1632 | // when considering all connections. |
no test coverage detected