| 207 | } |
| 208 | |
| 209 | Status ConvBuffer::Compile(const CreationContext& creation_context) { |
| 210 | std::string code = GenerateConvBuffer( |
| 211 | definition_.src_tensors[0], definition_.dst_tensors[0], |
| 212 | definition_.precision, x_elements_, y_elements_, linked_operations_); |
| 213 | return creation_context.cache->GetOrCreateCLKernel( |
| 214 | code, "main_function", *creation_context.context, |
| 215 | *creation_context.device, &kernel_); |
| 216 | } |
| 217 | |
| 218 | Status ConvBuffer::BindArguments() { |
| 219 | kernel_.ResetBindingCounter(); |
nothing calls this directly
no test coverage detected