| 143 | template <typename... Args, class work_size_type> |
| 144 | requires (is_valid_work_size_type<work_size_type>()) |
| 145 | void execute_sync(const device_function& kernel, |
| 146 | const work_size_type& global_work_size, |
| 147 | const work_size_type& local_work_size, |
| 148 | const Args&... args) const __attribute__((enable_if(check_arg_types<Args...>(), "valid args"))) { |
| 149 | kernel_execute_forwarder(kernel, false, true, global_work_size, local_work_size, {}, { args... }); |
| 150 | } |
| 151 | |
| 152 | template <typename... Args, class work_size_type> |
| 153 | requires (is_valid_work_size_type<work_size_type>()) |
nothing calls this directly
no outgoing calls
no test coverage detected