We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I spent a whole week on this project, so here are some tips for you to save the time:
apt-get update && apt-get install -y --no-install-recommends \ curl wget \ ocl-icd-libopencl1 \ opencl-headers \ nano \ build-essential \ clinfo pkg-config && \ rm -rf /var/lib/apt/lists/* mkdir -p /etc/OpenCL/vendors && \ echo "libnvidia-opencl.so.1" > /etc/OpenCL/vendors/nvidia.icd ln -s /usr/local/cuda/lib64/libOpenCL.so.1 /usr/lib/libOpenCL.so echo "/usr/local/nvidia/lib" >> /etc/ld.so.conf.d/nvidia.conf && \ echo "/usr/local/nvidia/lib64" >> /etc/ld.so.conf.d/nvidia.conf export PATH=/usr/local/nvidia/bin:${PATH} export LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64:${LD_LIBRARY_PATH} # nvidia-container-runtime export NVIDIA_VISIBLE_DEVICES=all export NVIDIA_DRIVER_CAPABILITIES=compute,utility
The text was updated successfully, but these errors were encountered:
I also created a github action to build:
https://github.com/Umiiii/profanity2/blob/master/.github/workflows/c-cpp.yml
Sorry, something went wrong.
I still get no devices.
$ ./profanity2.x64 --leading 0 -z $pubkey Mode: leading Target: Address Devices:
No branches or pull requests
I spent a whole week on this project, so here are some tips for you to save the time:
The text was updated successfully, but these errors were encountered: