Bitcoin Forum
June 23, 2024, 10:10:01 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner - a new litecoin mining application [Windows/Linux] on: February 04, 2014, 06:49:27 PM
Anything else I could check?
what device nodes starting with nvidia are in your /dev folder? only the nvidiactl node or also a node representing a GPU?

is the nvidia kernel module loaded?

Christian


Code:
[root@fedora cudaminer]# ls -lh /dev/nvidia*
crw-rw-rw-. 1 root root 195,   0 feb  4 14:35 /dev/nvidia0
crw-rw-rw-. 1 root root 195, 255 feb  4 14:35 /dev/nvidiactl
[root@fedora cudaminer]# lsmod | grep nvidia
nvidia_uvm             34728  0
nvidia              10677446  57 nvidia_uvm
drm                   283349  2 nvidia
i2c_core               38476  3 drm,i2c_i801,nvidia

(sorry for the delay, the forum doesn't let me post to many replies in a short time)
2  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner - a new litecoin mining application [Windows/Linux] on: February 04, 2014, 06:42:15 PM
[2014-02-04 15:08:32] Unable to query CUDA driver version! Is an nVidia driver installed?

creating the nvidia device nodes manually may be required.

see here
https://bitcointalk.org/index.php?topic=167229.msg4750585;topicseen#msg4750585
Thanks for a fast reply!!

I've already tried. With this configuration:
Code:
[root@fedora cudaminer]# cat ./nvidia_nodes 
#!/bin/bash
timestamp=`date`
modprobe nvidia-uvm

if [ ! -c /dev/nvidiactl ]
then
    echo "Server $HOSTNAME device files re-created at $timestamp"
    
    # Count the number of NVIDIA controllers found.
    N3D=`lspci | grep -i NVIDIA | grep "3D controller" | wc -l`
    NVGA=`lspci | grep -i NVIDIA | grep "VGA compatible controller" | wc -l`

    N=`expr $N3D + $NVGA - 1`
    for i in `seq 0 $N`; do
        mknod -m 666 /dev/nvidia$i c 195 $i;
    done
    mknod -m 666 /dev/nvidiactl c 195 255
else
    echo "Files exists"
    exit 1
fi

... and this result:
Code:
[root@fedora cudaminer]# ./nvidia_nodes 
Files exists

Anything else I could check?
3  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner - a new litecoin mining application [Windows/Linux] on: February 04, 2014, 06:34:04 PM
Hi, I have a problem and I'm out of ideas of how to fix it. The cudaminer gives me this error:
Code:
[root@fedora cudaminer]# ./CudaMiner-master/cudaminer --help
  *** CudaMiner for nVidia GPUs by Christian Buchner ***
            This is version 2014-02-02 (beta)
based on pooler-cpuminer 2.3.2 (c) 2010 Jeff Garzik, 2012 pooler
   Cuda additions Copyright 2013,2014 Christian Buchner
 LTC donation address: LKS1WDKGED647msBQfLBHV3Ls8sveGncnm
 BTC donation address: 16hJF5mceSojnTD3ZTUDqdRhDyPJzoRakM
 YAC donation address: Y87sptDEcpLkLeAuex6qZioDbvy1qXZEj4
[2014-02-04 15:08:32] Unable to query CUDA driver version! Is an nVidia driver installed?
I have CUDA installed:
Code:
[root@fedora cudaminer]# nvcc -V
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2013 NVIDIA Corporation
Built on Wed_Jul_17_18:36:13_PDT_2013
Cuda compilation tools, release 5.5, V5.5.0
And the Nvidia Driver updated:
Code:
[root@fedora cudaminer]# nvidia-settings -v
nvidia-settings:  version 331.38  (buildmeister@swio-display-x64-rhel04-15)  Wed Jan  8 19:53:03 PST 2014
I've already searched the forum and I'm sure I
 - have correctly installed autoconf and automake
 - first run autogen.sh, then configure and the make.
 - have the path for CUDA to work correctly exported system wide

I've been dealing with this for more than a day so any suggestions are welcome!!

[ps]
Code:
[root@fedora cudaminer]# uname -a
Linux fedora 3.12.9-301.fc20.x86_64 #1 SMP Wed Jan 29 15:56:22 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!