From 89d0d99bdb628a5c4d035874998ae7c471a43a89 Mon Sep 17 00:00:00 2001 From: jsteube Date: Sun, 25 Dec 2016 14:52:12 +0100 Subject: [PATCH] Shader Model version message is confusing users, rename it to CUDA version --- src/opencl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opencl.c b/src/opencl.c index b3c128e8c..ce6af36b3 100644 --- a/src/opencl.c +++ b/src/opencl.c @@ -2944,7 +2944,7 @@ int opencl_ctx_devices_init (hashcat_ctx_t *hashcat_ctx, const int comptime) if (device_param->sm_major < 5) { if (user_options->quiet == false) event_log_warning (hashcat_ctx, "* Device #%u: Old CUDA chipset %u.%u detected, OpenCL performance is reduced.", device_id + 1, device_param->sm_major, device_param->sm_minor); - if (user_options->quiet == false) event_log_warning (hashcat_ctx, " For ideal hashcat performance on NVIDIA GPU you need Shader Model 5.0 or higher"); + if (user_options->quiet == false) event_log_warning (hashcat_ctx, " For ideal hashcat performance on NVIDIA GPU you need CUDA 5.0 or higher"); } }