| 26 | #include <floor/compute/cuda/cuda_argument_buffer.hpp> |
| 27 | |
| 28 | cuda_kernel::cuda_kernel(kernel_map_type&& kernels_) : kernels(std::move(kernels_)) { |
| 29 | } |
| 30 | |
| 31 | typename cuda_kernel::kernel_map_type::const_iterator cuda_kernel::get_kernel(const compute_queue& cqueue) const { |
| 32 | return kernels.find((const cuda_device&)cqueue.get_device()); |
nothing calls this directly
no outgoing calls
no test coverage detected