| 726 | } |
| 727 | |
| 728 | std::shared_ptr<device_program::program_entry> cuda_context::create_program_entry(const device& dev, |
| 729 | toolchain::program_data program, |
| 730 | const toolchain::TARGET) { |
| 731 | return std::make_shared<cuda_program::cuda_program_entry>(create_cuda_program((const cuda_device&)dev, program)); |
| 732 | } |
| 733 | |
| 734 | device_context::memory_usage_t cuda_context::get_memory_usage(const device& dev) const { |
| 735 | const auto& cu_dev = (const cuda_device&)dev; |
nothing calls this directly
no outgoing calls
no test coverage detected