| 103 | } |
| 104 | |
| 105 | void GPUOperation::AddOperation(ElementwiseOperation* operation) { |
| 106 | linked_operations_.push_back(operation); |
| 107 | operation->SetLinkIndex(linked_operations_.size()); |
| 108 | } |
| 109 | |
| 110 | ElementwiseOperation::ElementwiseOperation(ElementwiseOperation&& operation) |
| 111 | : GPUOperation(std::move(operation)), |
no test coverage detected