| 588 | } |
| 589 | |
| 590 | shared_ptr<compute_program> cuda_compute::add_program_source(const string& source_code, |
| 591 | const string additional_options) { |
| 592 | compile_options options { .cli = additional_options }; |
| 593 | return add_program_source(source_code, options); |
| 594 | } |
| 595 | |
| 596 | shared_ptr<compute_program> cuda_compute::add_program_source(const string& source_code, |
| 597 | compile_options options) { |
nothing calls this directly
no test coverage detected