From e8aefb412cd45b7770bf7d3123b374aa822a0782 Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 18 Jun 2016 21:29:24 +0200 Subject: [PATCH] Reenable --gpu-temp-retain (65c by default), now that we have fan set support on Linux and Windows --- docs/changes.txt | 2 -- src/hashcat.c | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/changes.txt b/docs/changes.txt index 4fc3dbf..89a813f 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -134,7 +134,5 @@ It combines all features of all hashcat projects in one project. - Created environment variable to inform NVidia OpenCL runtime to not create its own kernel cache - Created environment variable to inform pocl OpenCL runtime to not create its own kernel cache - Dropped special 64-bit rotate() handling for NV, it seems that they've added it to their OpenCL runtime -- Disabled retain support by default, you can reactive it using --gpu-temp-retain - Completely get rid of HAVE_ADL, HAVE_NVML and HAVE_NVAPI in sources - Replaced NVAPI with NVML on windows - diff --git a/src/hashcat.c b/src/hashcat.c index 4425b83..23b91c5 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -78,7 +78,7 @@ double TARGET_MS_PROFILE[4] = { 2, 12, 96, 480 }; #define NVIDIA_SPIN_DAMP 100 #define GPU_TEMP_DISABLE 0 #define GPU_TEMP_ABORT 90 -#define GPU_TEMP_RETAIN 0 +#define GPU_TEMP_RETAIN 65 #define WORKLOAD_PROFILE 2 #define KERNEL_ACCEL 0 #define KERNEL_LOOPS 0 @@ -16199,7 +16199,7 @@ int main (int argc, char **argv) } else { - log_info ("WARNING: Failed to set initial fan speed for device #%u", device_id + 1); + //log_info ("WARNING: Failed to set initial fan speed for device #%u", device_id + 1); data.hm_device[device_id].fan_set_supported = 0; } -- 2.25.1