| 128 | } |
| 129 | |
| 130 | Status Reshape::AddToQueue(CLCommandQueue* queue) { |
| 131 | RETURN_IF_ERROR(BindArguments()); |
| 132 | return queue->DispatchImplicit(kernel_, GetGridSize(), work_group_size_); |
| 133 | } |
| 134 | |
| 135 | Reshape CreateReshape(const OperationDef& definition) { |
| 136 | return Reshape(definition); |
nothing calls this directly
no test coverage detected