1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-23 15:08:37 +00:00

add missing macro for Apple

This commit is contained in:
Gabriele Gristina 2025-07-18 21:01:13 +02:00
parent 23b750492d
commit c751424cc0
No known key found for this signature in database
GPG Key ID: 9F68B59298F311F0

View File

@ -9357,6 +9357,7 @@ static int get_hip_kernel_local_mem_size (hashcat_ctx_t *hashcat_ctx, hipFunctio
return 0; return 0;
} }
#if defined (__APPLE__)
static int get_metal_kernel_wgs (hashcat_ctx_t *hashcat_ctx, mtl_pipeline pipeline, u32 *result) static int get_metal_kernel_wgs (hashcat_ctx_t *hashcat_ctx, mtl_pipeline pipeline, u32 *result)
{ {
return hc_mtlGetMaxTotalThreadsPerThreadgroup (hashcat_ctx, pipeline, result); return hc_mtlGetMaxTotalThreadsPerThreadgroup (hashcat_ctx, pipeline, result);
@ -9371,6 +9372,7 @@ static int get_metal_kernel_local_mem_size (hashcat_ctx_t *hashcat_ctx, mtl_pipe
{ {
return hc_mtlGetStaticThreadgroupMemoryLength (hashcat_ctx, pipeline, (unsigned int *) result); return hc_mtlGetStaticThreadgroupMemoryLength (hashcat_ctx, pipeline, (unsigned int *) result);
} }
#endif
static int get_opencl_kernel_wgs (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param, cl_kernel kernel, u32 *result) static int get_opencl_kernel_wgs (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param, cl_kernel kernel, u32 *result)
{ {