Returns the number of compute platforms on the system.
| 197 | |
| 198 | /// Returns the number of compute platforms on the system. |
| 199 | static size_t platform_count() |
| 200 | { |
| 201 | cl_uint count = 0; |
| 202 | clGetPlatformIDs(0, 0, &count); |
| 203 | return static_cast<size_t>(count); |
| 204 | } |
| 205 | |
| 206 | private: |
| 207 | /// \internal_ |
nothing calls this directly
no outgoing calls
no test coverage detected