| 605 | const vector<const void*>& vptr_args; |
| 606 | |
| 607 | kernel_func(void* func_ptr_, const vector<const void*>& vptr_args_) noexcept : |
| 608 | kernel_func_base(), func_ptr(func_ptr_), vptr_args(vptr_args_) {} |
| 609 | |
| 610 | //! needed to cast the kernel function type to a function type with the correct amount of parameters |
| 611 | template <typename... Args> using kernel_func_type_t = void (FLOOR_HOST_COMPUTE_CC *)(Args...); |
no outgoing calls
no test coverage detected