| 93 | } |
| 94 | |
| 95 | Status Reshape::Compile(const CreationContext& creation_context) { |
| 96 | const auto code = |
| 97 | GetReshapeCode(definition_.src_tensors[0], definition_.dst_tensors[0], |
| 98 | definition_.precision, linked_operations_); |
| 99 | return creation_context.cache->GetOrCreateCLKernel( |
| 100 | code, "main_function", *creation_context.context, |
| 101 | *creation_context.device, &kernel_); |
| 102 | } |
| 103 | |
| 104 | Status Reshape::BindArguments() { |
| 105 | kernel_.ResetBindingCounter(); |
nothing calls this directly
no test coverage detected