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

Method execute_sync

include/floor/device/device_queue.hpp:145–150  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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>())

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected