mirror of
https://github.com/hashcat/hashcat
synced 2025-04-20 21:55:56 +02:00
CUDA Backend: Do not warn about missing CUDA SDK installation if --stdout is used
This commit is contained in:
parent
0ba1558e17
commit
fe91f6276d
@ -1,5 +1,15 @@
|
||||
* changes v6.2.1 -> v6.x.x
|
||||
|
||||
##
|
||||
## Improvements
|
||||
##
|
||||
|
||||
- CUDA Backend: Do not warn about missing CUDA SDK installation if --stdout is used
|
||||
|
||||
##
|
||||
## Technical
|
||||
##
|
||||
|
||||
- Dependencies: Updated LZMA SDK from 19.00 to 21.02 alpha
|
||||
- Dependencies: Updated xxHash from 0.1.0 to v0.8.0 - Stable XXH3
|
||||
|
||||
|
@ -6611,6 +6611,9 @@ int backend_ctx_devices_init (hashcat_ctx_t *hashcat_ctx, const int comptime)
|
||||
|
||||
device_param->spin_damp = (double) user_options->spin_damp / 100;
|
||||
|
||||
|
||||
if (user_options->stdout_flag == false)
|
||||
{
|
||||
// recommend CUDA
|
||||
|
||||
if ((backend_ctx->cuda == NULL) || (backend_ctx->nvrtc == NULL))
|
||||
@ -6648,6 +6651,7 @@ int backend_ctx_devices_init (hashcat_ctx_t *hashcat_ctx, const int comptime)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// instruction set
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user