FPGA "no compiler is available" error - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: FPGA "no compiler is available" error (/thread-7002.html) |
FPGA "no compiler is available" error - randomuser123 - 11-10-2017 I tried running hashcat on an Intel/Altera FPGA to see what the performance would be like, but I'm getting the error below. Any advice on what to do to make it work? (when I run --bench, the same errors are printed out and the device is skipped) Also, has anyone successfully gotten hashcat to work with FPGAs? I saw some posts with discussions, but did not see anyone saying that they got it working. Code: hashcat64.exe -I RE: FPGA "no compiler is available" error - epixoip - 11-10-2017 We (Sagitta HPC/Terahash) looked into doing OpenCL on Altera FPGA back in 2015 and there were several severe limitations and drawbacks. The first big issue, which you are running into now, is that there is no JIT compiler. You would need to pre-compile the kernels and then patch Hashcat to load the binary kernels (which is the way oclHashcat used to work before we went open source and switched to JIT compiling.) The second biggest issue was the driver. Now, this may have changed with Intel's acquisition of Altera. But at the time, driver (1) used an ancient ABI and would only compile on CentOS 5, and (2) could only support one thread. We got md5stress and oclGaussCrack to work with Altera's OpenCL, but the task of getting Hashcat to work seemed like a massive undertaking, and we shelved it until the state of OpenCL on FPGA improves. RE: FPGA "no compiler is available" error - randomuser123 - 11-10-2017 Thanks for the information epixoip. Since my goal was to just benchmark the performance for my own interest (and to share the results), I won't be putting in the effort to pre-compile kernels, patch hashcat, etc. Hopefully the state of things improves in the future. |