| 217 | } |
| 218 | |
| 219 | Status DepthWiseConvolution::Compile(const CreationContext& creation_context) { |
| 220 | const auto code = GenerateDepthWiseConvolutionCode( |
| 221 | definition_.src_tensors[0], definition_.dst_tensors[0], |
| 222 | definition_.precision, biases_, channel_multiplier_, linked_operations_, |
| 223 | *creation_context.device); |
| 224 | return creation_context.cache->GetOrCreateCLKernel( |
| 225 | code, "main_function", *creation_context.context, |
| 226 | *creation_context.device, &kernel_); |
| 227 | } |
| 228 | |
| 229 | Status DepthWiseConvolution::BindArguments() { |
| 230 | kernel_.ResetBindingCounter(); |
nothing calls this directly
no test coverage detected