AMD Ryzen 4500U
#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


Messages In This Thread
AMD Ryzen 4500U - by alexcoder - 03-03-2021, 02:09 PM
RE: AMD Ryzen 4500U - by rehankhan6 - 04-22-2021, 08:32 AM
RE: AMD Ryzen 4500U - by Emi - 10-18-2021, 11:33 AM
RE: AMD Ryzen 4500U - by Xanadrel - 10-19-2021, 12:25 AM