AMD Ryzen 4500U
#1
Hello, guys! Tell me please, does Hashcat work on AMD Ryzen 4500U iGPU in Windows? If it does, what hashrate I should expect for hash 2500? Thanks a lot.
Reply
#2
Yes, It works. AMD Ryzen 5 4500U is a processor for thin and light laptops based on the Renoir architecture. This hash is 2500+ must. I also have AMD Ryzen 5 which I buy from https://pcfanatics.pk/ at very best price.
Reply
#3
Hello, guys! I have a new Asus AMD Ryzen 5 4500U installed ubuntu 20.04.3. I have error to start hashcat.
clGetplatformIDs(): CL_PLATFORM_NOT_FOUND_KHR.
ATTENTION! No OpenCL-compatibe.
How you guys install AMD software in Ubuntu?
Thanks a lot.
Reply
#4
Reposting atom's message on that subject:

Get CPU support (AMD and Intel) for hashcat on Linux is easy!!

Note that the Intel OpenCL runtime provides much better OpenCL support for AMD CPU than the original AMD OpenCL runtime.
There's no need for specific Intel hardware. You can just install it.

On Ubuntu, do this:

1. Preparation. It's important to uninstall any OpenCL stuff which could create a conflict, such as POCL or MESA. If you are on a new system, skip to step 2
Code:
$ dpkg -l | grep opencl
The follow packages are fine to have:
- clinfo
- ocl-icd-libopencl1*
- opencl-*-headers
If you have ROCm related stuff you can leave it, too.
Any other packages, including NVIDIA, should be purged. If you need NVIDIA support, install the CUDA SDK from .run file instead.

2. Install

Code:
$ cd /tmp
$ wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
$ sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
$ rm GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
$ echo "deb https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
$ sudo add-apt-repository "deb https://apt.repos.intel.com/oneapi all main"
$ sudo apt update
$ sudo apt install intel-oneapi-runtime-opencl ocl-icd-libopencl1

For other Distributions, see here:
https://software.intel.com/content/www/u...s/apt.html
Reply