| 781 | } |
| 782 | |
| 783 | af_err afcl_get_platform(afcl_platform* res) { |
| 784 | try { |
| 785 | *res = static_cast<afcl_platform>(getActivePlatformVendor()); |
| 786 | } |
| 787 | CATCHALL; |
| 788 | return AF_SUCCESS; |
| 789 | } |
| 790 | |
| 791 | af_err afcl_get_context(cl_context* ctx, const bool retain) { |
| 792 | try { |
nothing calls this directly
no test coverage detected