| 823 | } |
| 824 | |
| 825 | af_err afcl_add_device_context(cl_device_id dev, cl_context ctx, |
| 826 | cl_command_queue que) { |
| 827 | try { |
| 828 | addDeviceContext(dev, ctx, que); |
| 829 | } |
| 830 | CATCHALL; |
| 831 | return AF_SUCCESS; |
| 832 | } |
| 833 | |
| 834 | af_err afcl_set_device_context(cl_device_id dev, cl_context ctx) { |
| 835 | try { |
nothing calls this directly
no test coverage detected