| 23 | #include <floor/compute/compute_context.hpp> |
| 24 | |
| 25 | cuda_argument_buffer::cuda_argument_buffer(const compute_kernel& func_, shared_ptr<compute_buffer> storage_buffer_, |
| 26 | const llvm_toolchain::function_info& arg_info_) : |
| 27 | argument_buffer(func_, storage_buffer_), arg_info(arg_info_) {} |
| 28 | |
| 29 | bool cuda_argument_buffer::set_arguments(const compute_queue& dev_queue, const vector<compute_kernel_arg>& args) { |
| 30 | auto cuda_storage_buffer = (cuda_buffer*)storage_buffer.get(); |
nothing calls this directly
no outgoing calls
no test coverage detected