Bitcoin Forum
May 26, 2024, 11:03:05 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] ccminer 1.5.1 with stats+monitoring API - opensource (tpruvot) on: January 17, 2015, 09:37:57 PM
you need to checkout the linux branch to get the fix : git checkout origin/linux -b linux

this is what my configure code looks like to get it to compile with a fresh git clone not the linux branch
I am compiling on ubuntu 14.04

NVCC="nvcc"

if test -n "$with_cuda"
then
  CUDA_INCLUDES="-I$with_cuda/include"
  CUDA_LIBS="-lcudart"
  CUDA_LDFLAGS="-L$with_cuda/lib$SUFFIX"
  if test -x "$with_cuda/bin/nvcc"
  then
    NVCC="$with_cuda/bin/nvcc"
  else
   abc="123"
  fi
else
  CUDA_INCLUDES="-I/usr/local/cuda/include"
  CUDA_LIBS="-lcudart -static-libstdc++"
  CUDA_LDFLAGS="-L/usr/local/cuda/lib$SUFFIX"
fi

if test -n "$with_nvml" ; then
  NVML_LIBPATH=$with_nvml
  CUDA_LDFLAGS="$CUDA_LDFLAGS -ldl"
fi
2  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] ccminer 1.5.1 with stats+monitoring API - opensource (tpruvot) on: January 17, 2015, 07:03:20 PM
I get this when compiling on Ubuntu 12 after running ./autogen and then ./configure:

checking for EVP_DigestFinal_ex in -lcrypto... yes
checking for gawk... (cached) mawk
checking for curl-config... /usr/bin/curl-config
checking for the version of libcurl... 7.22.0
checking for libcurl >= version 7.15.2... yes
checking whether libcurl is usable... yes
checking for curl_free... yes
./configure: line 6586: syntax error near unexpected token `fi'
./configure: line 6586: `  fi'

Then make:
make: *** No targets specified and no makefile found.  Stop.

I was getting the same error and fixed it by adding an else statement that does nothing.
edit  I also added a then too.

edit this is what my configure code looks like to get it to compile with a fresh git clone

NVCC="nvcc"

if test -n "$with_cuda"
then
  CUDA_INCLUDES="-I$with_cuda/include"
  CUDA_LIBS="-lcudart"
  CUDA_LDFLAGS="-L$with_cuda/lib$SUFFIX"
  if test -x "$with_cuda/bin/nvcc"
  then
    NVCC="$with_cuda/bin/nvcc"
  else
   abc="123"
  fi
else
  CUDA_INCLUDES="-I/usr/local/cuda/include"
  CUDA_LIBS="-lcudart -static-libstdc++"
  CUDA_LDFLAGS="-L/usr/local/cuda/lib$SUFFIX"
fi

if test -n "$with_nvml" ; then
  NVML_LIBPATH=$with_nvml
  CUDA_LDFLAGS="$CUDA_LDFLAGS -ldl"
fi
3  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] ccminer 1.5.1 with stats+monitoring API - opensource (tpruvot) on: December 18, 2014, 05:34:01 PM
So you have to set intensity for each card.

You can and should if your cards are different, but if you just set it once it should use that for all cards.
4  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] ccminer 1.5.0 with stats+monitoring API - opensource (tpruvot) on: December 14, 2014, 04:25:57 PM
hi again,
fyi, lyra2 doesn't seem to work on sm30 (at least not on nicehash and yaamp), the miner says it's hashing at 471khs but no shares are submitted and pool's PING api's output stays at 0.
no it doesn't... epsylon3 released a preliminary version (without even asking...  Angry and forgetting somehow to site the author... who is still a bit pissed about it  Grin yeah well...) which didn't have yet the 3.0 kernel as it was for a preliminary test.

Support for the kernel 3.0 can be found here: https://github.com/djm34/ccminer
(the current version has adjustable throughput, you need --throughput 4 to get to metallicjames release, the interest is that you can set it a bit higher for the big guns...)
If you don't want to go through the trouble of setting it up: metallicjames release should also have these new kernel.

cheers,
The pissed off author.  Grin

 

Excuse me pissed off author, but when I try to compile yours on ubuntu 14.04 and cuda 6.5 and get this error
Code:
nvcc -g -O2 -I . -Xptxas "-abi=no -v" -gencode=arch=compute_30,code=\"sm_30,compute_30\" -gencode=arch=compute_35,code=\"sm_35,compute_35\" -gencode=arch=compute_50,code=\"sm_50,compute_50\" -gencode=arch=compute_52,code=\"sm_52,compute_52\" --maxrregcount=80 --ptxas-options=-v  -o heavy/heavy.o -c heavy/heavy.cu
nvcc fatal   : Unsupported gpu architecture 'compute_52'
make[2]: *** [heavy/heavy.o] Error 1
make[2]: Leaving directory `/home/miner/mining/cclyra2'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/miner/mining/cclyra2'
make: *** [all] Error 2


Would you be kind enough to help me figure it out?
5  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] ccminer 1.4.x for Blake 256 (NEOS / Saffron) on: October 19, 2014, 12:00:44 AM
oh, thx Smiley hmm ? on which pool ?

I am mining on la1.blakecoin.com.  I started out using blakecoin algorithm and thought I would see what happens when I used the blake algorithm.  To my surprise I was getting accepted shares but with half the hash rate.  I have been running with the blakecoin now for a while, but  I swithed it back to blake now to see if I was just wrong before.  So far I have one accepted (booo) with a message that says 'h is not zero' in red.  As of the finish writing of this I still just have the one bad accepted share with blake algorithm.

Also accepts are few and far between on both of them.  So I get a pool reported hash rate that is low or 0 for a while then it spikes up when I get an accept.
6  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] ccminer 1.4.x for Blake 256 (NEOS / Saffron) on: October 18, 2014, 05:00:20 PM
This might be another easy question that I don't have the answer to yet, but how do I know to use either the blake or blakecoin algorithm?  They both seem to give me accepted shares, but one is half the hash rate of the other.  Thanks for any help again.
7  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] ccminer 1.4.1 for Blake 256 (NEOS / Saffron) on: October 18, 2014, 03:38:20 PM
Epsylon3, I think you might be correct with your advise.  I thought in bed before sleeping and realized these are for the 750 ti and not my 780 gtx.  I am compiling a new one with the advice your gave me.  Thanks you.

Edit: You were spot on and it is working just fine now.  Donations sent.
8  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] ccminer 1.4.1 for Blake 256 (NEOS / Saffron) on: October 18, 2014, 10:08:52 AM
I am trying to use this with Xubuntu 14.04.1, kernel 3.13.0-37, nvidia driver 340.46, cuda 6.5.  I have other versions of ccminer compiled and working.  I can compile this without error.  The problem comes when I am trying to execute ccminer.  It gives me this error message: "Cuda error in file 'blake32.cu' in line 273 : invalid device symbol."  I get the same type of 'invalid device symbol' for other algorithms too.  Could someone please help me figure out why I ma getting this error.
9  Bitcoin / Pools / Re: mining.BitcoinAffiliatenetwork.com - we're giving away 1 Antminer S3 every day! on: August 10, 2014, 11:18:23 PM
Well now I am waiting to see if my work was for something or nothing before I start mining on this site again.  Looked good until I woke up and had log in problems then 0's across the board for earnings once logged in, but hash rate was still there.
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!