1
mirror of https://github.com/hashcat/hashcat synced 2024-11-28 05:21:38 +01:00

Add better detection future HIP 4.4

This commit is contained in:
Jens Steube 2021-10-12 20:01:14 +02:00
parent c08ad6f587
commit 733f9c2d77

View File

@ -7113,28 +7113,28 @@ int backend_ctx_init (hashcat_ctx_t *hashcat_ctx)
} }
else else
{ {
// we need to wait for 4.4 to be released to continue here if (hip_runtimeVersion < 40400000)
// ignore this backend {
int hip_version_major = (hip_runtimeVersion - 0) / 10000000;
int hip_version_minor = (hip_runtimeVersion - (hip_version_major * 10000000)) / 100000;
int hip_version_patch = (hip_runtimeVersion - (hip_version_major * 10000000) - (hip_version_minor * 100000));
int hip_version_major = (hip_runtimeVersion - 0) / 10000000; event_log_warning (hashcat_ctx, "Unsupported AMD HIP runtime version '%d.%d.%d' detected! Falling back to OpenCL...", hip_version_major, hip_version_minor, hip_version_patch);
int hip_version_minor = (hip_runtimeVersion - (hip_version_major * 10000000)) / 100000; event_log_warning (hashcat_ctx, NULL);
int hip_version_patch = (hip_runtimeVersion - (hip_version_major * 10000000) - (hip_version_minor * 100000));
event_log_warning (hashcat_ctx, "Unsupported AMD HIP runtime version '%d.%d.%d' detected! Falling back to OpenCL...", hip_version_major, hip_version_minor, hip_version_patch); rc_hip_init = -1;
event_log_warning (hashcat_ctx, NULL); rc_hiprtc_init = -1;
rc_hip_init = -1; backend_ctx->rc_hip_init = rc_hip_init;
rc_hiprtc_init = -1; backend_ctx->rc_hiprtc_init = rc_hiprtc_init;
backend_ctx->rc_hip_init = rc_hip_init; backend_ctx->hip = NULL;
backend_ctx->rc_hiprtc_init = rc_hiprtc_init;
backend_ctx->hip = NULL; // if we call this, opencl stops working?! so we just zero the pointer
// this causes a memleak and an open filehandle but what can we do?
// if we call this, opencl stops working?! so we just zero the pointer // hip_close (hashcat_ctx);
// this causes a memleak and an open filehandle but what can we do? // hiprtc_close (hashcat_ctx);
// hip_close (hashcat_ctx); }
// hiprtc_close (hashcat_ctx);
} }
} }
else else