| 174 | } |
| 175 | |
| 176 | Status ConcatZ::Compile(const CreationContext& creation_context) { |
| 177 | const auto code = |
| 178 | GetConcatKernelCode(definition_, channels_, linked_operations_); |
| 179 | return creation_context.cache->GetOrCreateCLKernel( |
| 180 | code, "main_function", *creation_context.context, |
| 181 | *creation_context.device, &kernel_); |
| 182 | } |
| 183 | |
| 184 | Status ConcatZ::BindArguments() { |
| 185 | kernel_.ResetBindingCounter(); |
nothing calls this directly
no test coverage detected