| 132 | */ |
| 133 | template <typename... Args> |
| 134 | void configure(Args &&...args) |
| 135 | { |
| 136 | auto k = std::make_unique<K>(); |
| 137 | k->configure(std::forward<Args>(args)...); |
| 138 | _kernel = std::move(k); |
| 139 | } |
| 140 | /** Configure the kernel setting the GPU target as well |
| 141 | * |
| 142 | * @param[in] gpu_target GPUTarget to set |
nothing calls this directly
no test coverage detected