| 208 | } |
| 209 | |
| 210 | string string_to_lower(const string &s) |
| 211 | { |
| 212 | string r = s; |
| 213 | std::transform(r.begin(), r.end(), r.begin(), [](char c) { return std::tolower(c); }); |
| 214 | return r; |
| 215 | } |
| 216 | |
| 217 | string string_remove_gpu_from_cpu_name(const string &s) |
| 218 | { |
no test coverage detected