You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GGML_LOG_INFO("Turing without tensor cores detected. Please compile with different options (e.g. `-DCMAKE_CUDA_ARCHITECTURES=61 -DGGML_CUDA_FORCE_MMQ=1`) for better performance.\n");
266
-
267
-
#endif// defined(GGML_USE_HIP)
265
+
std::string device_name(prop.name);
266
+
if (device_name == "NVIDIA GeForce MX450") {
267
+
affected_devices.push_back({ id, device_name });
268
+
}
269
+
if (device_name == "NVIDIA GeForce MX550") {
270
+
affected_devices.push_back({ id, device_name });
271
+
}
272
+
if (device_name.substr(0, 21) == "NVIDIA GeForce GTX 16") {
273
+
affected_devices.push_back({ id, device_name });
274
+
}
275
+
#endif// defined(GGML_USE_HIP)
276
+
}
277
+
if (ggml_cuda_highest_compiled_arch(GGML_CUDA_CC_TURING) >= GGML_CUDA_CC_TURING && affected_devices.size()) {
278
+
GGML_LOG_INFO("These devices will have affected performance due to lack of tensor cores:\n");
279
+
for (size_t affected_id = 0; affected_id < affected_devices.size(); affected_id++) {
0 commit comments