You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 9, 2021. It is now read-only.
Looks like readme is not really clear in Ubuntu section, because I've ran into some issues during build. So I've created the following instruction. Do steps under root user or use sudo to install dependencies. Quick steps are:
cd nheqminer/cpu_xenoncat/asm_linux/
chmod +x fasm
sh assemble.sh
cd ../../../
mkdir build && cd build
cmake -DCUDA_CUDART_LIBRARY="/usr/local/cuda-8.0/lib64/libcudart.so" ../nheqminer
make -j $(nproc)
The text was updated successfully, but these errors were encountered:
This is a great guide you have written, incorporating all the recent discussions.
I would also add that if you have a new cuda version (9.1 in my case), you are going to have to delete #include "device_functions_decls.h" from cuda_djezo/eqcuda.hpp
Also I think the installation guide is misleading in that you don't seem to need boost 1.58 to compile. I went through a lot of trouble building boost 1.66 in a custom directory, which means that cmake needs another argument specifying -DBOOST_ROOT, or you can set export BOOST_ROOT=/path/to/custom/boost/build/ before calling cmake.
Also, I think the build directory should be relocated into the root git directory, like all the other github builds...maybe that's just aesthetic.
The hash-rates were a little disappointing after all the compilation effort. Some work needs to be done on the cuda algorithms.
Looks like readme is not really clear in Ubuntu section, because I've ran into some issues during build. So I've created the following instruction. Do steps under root user or use sudo to install dependencies. Quick steps are:
Get and install latest cuda repo(https://developer.nvidia.com/cuda-downloads):
Install build essential:
Install Nvidia drivers 384.111 and Cuda SDK 8.0:
Get latest nheqminer:
Configure and build:
The text was updated successfully, but these errors were encountered: