MCPcopy Create free account
hub / github.com/a2flo/floor / execute_cooperative_sync

Method execute_cooperative_sync

include/floor/device/device_queue.hpp:197–202  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

195 template <typename... Args, class work_size_type>
196 requires (is_valid_work_size_type<work_size_type>())
197 void execute_cooperative_sync(const device_function& kernel,
198 const work_size_type& global_work_size,
199 const work_size_type& local_work_size,
200 const Args&... args) const __attribute__((enable_if(check_arg_types<Args...>(), "valid args"))) {
201 kernel_execute_forwarder(kernel, true, true, global_work_size, local_work_size, {}, { args... });
202 }
203
204 template <typename... Args, class work_size_type>
205 requires (is_valid_work_size_type<work_size_type>())

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected