| 249 | } |
| 250 | |
| 251 | Status ConvBuffer::AddToQueue(CLCommandQueue* queue) { |
| 252 | RETURN_IF_ERROR(BindArguments()); |
| 253 | return queue->DispatchImplicit(kernel_, GetGridSize(), work_group_size_); |
| 254 | } |
| 255 | |
| 256 | Status CreateConvBuffer(const CreationContext& creation_context, |
| 257 | const OperationDef& definition, |
nothing calls this directly
no test coverage detected