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

Method execute

include/floor/device/device_queue.hpp:113–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111 template <typename... Args, class work_size_type>
112 requires (is_valid_work_size_type<work_size_type>())
113 void execute(const device_function& kernel,
114 const work_size_type& global_work_size,
115 const work_size_type& local_work_size,
116 const Args&... args) const __attribute__((enable_if(check_arg_types<Args...>(), "valid args"))) {
117 kernel_execute_forwarder(kernel, false, false, global_work_size, local_work_size, {}, { args... });
118 }
119
120 template <typename... Args, class work_size_type>
121 requires (is_valid_work_size_type<work_size_type>())

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected