Device selection help
#1
Hello, I'm facing a problem where I can't select the device #2 to go with device #3. It automaticly selects device #1 when I try to and the HPI API is currently not working?


hashcat hashes.txt -D 2,3 -w 3 -a 3 -m 25800 -o cracked.txt -i --increment-min=8 -1=?1?d ?1?1?1?1?1?1?1?1
hashcat (v6.2.6) starting

ADL2_Overdrive_Caps(): -5

ADL2_Overdrive_Caps(): -5

ADL2_Overdrive_Caps(): -5

ADL_Overdrive5_CurrentActivity_Get(): -1

ADL_Overdrive5_CurrentActivity_Get(): -1

ADL_Overdrive5_FanSpeed_Get(): -1

ADL_Overdrive5_CurrentActivity_Get(): -1

ADL_Overdrive5_Temperature_Get(): -1

ADL_Overdrive5_CurrentActivity_Get(): -1

HIP API (HIP 4.4)
=================
* Device #1: AMD Radeon(TM) Graphics, 3015/3147 MB, 5MCU

OpenCL API (OpenCL 2.1 AMD-APP (3380.6)) - Platform #1 [Advanced Micro Devices, Inc.]
=====================================================================================
* Device #2: AMD Radeon(TM) Graphics, skipped

OpenCL API (OpenCL 3.0 WINDOWS) - Platform #2 [Intel(R) Corporation]
====================================================================
* Device #3: AMD Ryzen 3 4300U with Radeon Graphics, skipped

Minimum password length supported by kernel: 0
Maximum password length supported by kernel: 256

Hashes: 1 digests; 1 unique digests, 1 unique salts
Bitmaps: 16 bits, 65536 entries, 0x0000ffff mask, 262144 bytes, 5/13 rotates

Optimizers applied:
* Zero-Byte
* Single-Hash
* Single-Salt
* Brute-Force

Watchdog: Temperature abort trigger set to 90c

hiprtcCompileProgram(): HIPRTC_ERROR_COMPILATION

error: cannot specify -o when generating multiple output files
error: error reading 'Jee'
2 errors generated when compiling for gfx90c.
Error: Failed to compile source (from CL or HIP source to LLVM IR).

* Device #1: Kernel ./OpenCL/shared.cl build failed.

* Device #1: Kernel ./OpenCL/shared.cl build failed.

Started: Thu Oct 06 09:58:50 2022
Stopped: Thu Oct 06 09:58:51 2022
Reply
#2
AMD HIP Drivers are indeed broken. You're very close to having it correct, change it to a lower case d instead. -d 2,3  will choose "Devices" where as -D chooses between GPU &/OR CPUs.

Also note your mask is going to throw errors using the custom charset "-1=?1?d" as it is appending itself within itself which cannot be done, maybe you meant to have an "?l" instead? such as -1 ?l?d
Reply
#3
(10-06-2022, 05:20 AM)slyexe Wrote: AMD HIP Drivers are indeed broken. You're very close to having it correct, change it to a lower case d instead. -d 2,3  will choose "Devices" where as -D chooses between GPU &/OR CPUs.

Also note your mask is going to throw errors using the custom charset "-1=?1?d" as it is appending itself within itself which cannot be done, maybe you meant to have an "?l" instead? such as -1 ?l?d

Thank you so much! Also, thanks for helping out with the mask, I appreciate it.
Reply