Pages:
Author

Topic: ethminer-0.9.41-genoil-1.1 - page 38. (Read 397363 times)

newbie
Activity: 38
Merit: 0
June 22, 2016, 07:10:56 AM

I followed the instructions -- and I get this error message:

bash: cd: cpp-ethereum/: No such file or directory

something needs to be updated?

Please help to resolve this.

It's saying there isn't such a directory, so are you sure you followed the guide? After the cloning the directory should be there.

And don't just copy+paste the whole thing at once, either write it to your terminal or copy line by line.
hero member
Activity: 1246
Merit: 708
June 22, 2016, 05:51:12 AM
Try run ethminer with device  nr specifing..
sr. member
Activity: 456
Merit: 250
Blockchain Just Entered The Real World
June 22, 2016, 05:01:03 AM
What ethminer - - list-devices show?

this is my devices :

Listing OpenCL devices.
FORMAT: [deviceID] deviceName
  • Tahiti
        CL_DEVICE_TYPE: GPU
        CL_DEVICE_GLOBAL_MEM_SIZE: 3221225472
        CL_DEVICE_MAX_MEM_ALLOC_SIZE: 2952790016
        CL_DEVICE_MAX_WORK_GROUP_SIZE: 256
hero member
Activity: 1246
Merit: 708
June 22, 2016, 04:57:38 AM
What ethminer - - list-devices show?
sr. member
Activity: 456
Merit: 250
Blockchain Just Entered The Real World
June 22, 2016, 04:31:58 AM
Hello,

I'm try to using ethminer-0.9.41-genoil-1.1.6 with HD7970 Card (Crimson 15.12) on Windows 10 64 bit 16GB RAM with this command:

setx GPU_FORCE_64BIT_PTR 0
setx GPU_MAX_HEAP_SIZE 100
setx GPU_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_SINGLE_ALLOC_PERCENT 100
ethminer.exe --farm-recheck 200 -G -S eu1.nanopool.org:9999 -O MY_ETH_ADDR.rig2/MY_EMAIL


but I get this error:

No GPU device with sufficient memory was found. Can't GPU mine. Remove the -G argument

what is the problem with my card ?

thx

Fabrizio
newbie
Activity: 3
Merit: 0
June 21, 2016, 10:52:25 PM
Using these instructions to build:

sudo apt-get update
sudo apt-get -y install software-properties-common
add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential -y
git clone https://github.com/Genoil/cpp-ethereum/
cd cpp-ethereum/
mkdir build
cd build
cmake -DBUNDLE=miner ..
make -j8

Following that guide will install the master branch aka 1.0.8, as you didn't tell how you obtained the 110 branch, i'm assuming you are either installing the 1.0.8 version or obtaining the latest version some other way than git clone.
Also that shows that you enter the directory cpp-ethereum/ but later you point to a cpp-ethereum-110/ directory.


Are you perhaps somehow copying files from a directory to another, where some files are from different versions maybe?

Maybe just try a clean install of 1.1.6 from source?

I know the Github guide can be confusing if you're trying to install the latest version and aren't that familiar with Linux and/or Git.

If you want to install the latest version (1.1.6 atm), you can follow this guide, worked fine for me (and some others), first of all, you should
Code:
rm -rf cpp-ethereum/
to remove your old version completely and to get a clean install or just use a different directory.

Code:
Install the latest version:

AMD:

sudo apt-get update
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential -y
git clone -b 110 https://github.com/Genoil/cpp-ethereum.git
cd cpp-ethereum/
mkdir build
cd build
cmake -DBUNDLE=miner ..
make -j8
cd ethminer
./ethminer -v

Nvidia:

wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/cuda-repo-ubuntu1404_7.5-18_amd64.deb
sudo dpkg -i cuda-repo-ubuntu1404_7.5-18_amd64.deb
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential cuda -y
git clone -b 110 https://github.com/Genoil/cpp-ethereum.git
cd cpp-ethereum/
mkdir build
cd build
cmake -DBUNDLE=cudaminer ..
make -j8
cd ethminer
./ethminer -v

Edit:
Disclaimer: This is just a small guide i made up, i take no guarantee that it will work, it has been tested on Ubuntu 14.04 and Linux Mint 17.3 where it has worked.


I followed the instructions -- and I get this error message:

bash: cd: cpp-ethereum/: No such file or directory

something needs to be updated?

Please help to resolve this.
sp_
legendary
Activity: 2926
Merit: 1087
Team Black developer
June 21, 2016, 05:17:41 PM
A smart b...

Intelligent miners..
Stupid ppl.
Dirty motherfuckers.. The waste is sold by you...
sp_
legendary
Activity: 2926
Merit: 1087
Team Black developer
June 21, 2016, 05:15:32 PM
A smart b...
legendary
Activity: 1750
Merit: 1024
June 21, 2016, 05:09:16 PM
Holy shit, wolf is selling to normal plebs?!?! *gasp* What has the world come to?

Always have, just not the top end algos, usually. SIB/SPR I'm fine with.

Ah... just the stuff no one really cares about. Like a single 750ti tanks SPR -_-


Genoil what's the compatibility status of your miner with the 1XXX series? I tried to get it running with W8.1 x64 and --cuda-grid-size 2048 --cuda-block-size 128 and it just errors out with 'unspecified error'.
newbie
Activity: 13
Merit: 0
June 21, 2016, 04:56:38 PM
Using these instructions to build:

sudo apt-get update
sudo apt-get -y install software-properties-common
add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential -y
git clone https://github.com/Genoil/cpp-ethereum/
cd cpp-ethereum/
mkdir build
cd build
cmake -DBUNDLE=miner ..
make -j8

Following that guide will install the master branch aka 1.0.8, as you didn't tell how you obtained the 110 branch, i'm assuming you are either installing the 1.0.8 version or obtaining the latest version some other way than git clone.
Also that shows that you enter the directory cpp-ethereum/ but later you point to a cpp-ethereum-110/ directory.
Are you perhaps somehow copying files from a directory to another, where some files are from different versions maybe?

Maybe just try a clean install of 1.1.6 from source?

I know the Github guide can be confusing if you're trying to install the latest version and aren't that familiar with Linux and/or Git.

If you want to install the latest version (1.1.6 atm), you can follow this guide, worked fine for me (and some others), first of all, you should
Code:
rm -rf cpp-ethereum/
to remove your old version completely and to get a clean install or just use a different directory.

Code:
Install the latest version:

AMD:

sudo apt-get update
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential -y
git clone -b 110 https://github.com/Genoil/cpp-ethereum.git
cd cpp-ethereum/
mkdir build
cd build
cmake -DBUNDLE=miner ..
make -j8
cd ethminer
./ethminer -v

Nvidia:

wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/cuda-repo-ubuntu1404_7.5-18_amd64.deb
sudo dpkg -i cuda-repo-ubuntu1404_7.5-18_amd64.deb
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential cuda -y
git clone -b 110 https://github.com/Genoil/cpp-ethereum.git
cd cpp-ethereum/
mkdir build
cd build
cmake -DBUNDLE=cudaminer ..
make -j8
cd ethminer
./ethminer -v

Edit:
Disclaimer: This is just a small guide i made up, i take no guarantee that it will work, it has been tested on Ubuntu 14.04 and Linux Mint 17.3 where it has worked.


Thank you.  I will try your instructions.  I downloaded the 110 source and just extracted from zip.  I will see if your instructions make any difference.  Thanks again for your response.

Got it working.  I did get a symbol error when attempting to run the ethminer file the first time I compiled it.  
Searched on Google about similar issues and found that uninstalling and reinstalling libcryptopp-dev solved the symbol error.  Now running 1.1.6.  Thanks again Smokyish
legendary
Activity: 1281
Merit: 1003
June 21, 2016, 04:52:08 PM
i have one (sometime an other one) miner that stop mining after a day or 2 (never mine more that 2 days without stop)

nothing wrong with internet connection or pool, other miner working fine


Quote
m  20:30:26|main  Mining on PoWhash #816986d5 : 86.51MH/s [A4724+87:R1+0:F9]
  m  20:30:28|main  Mining on PoWhash #816986d5 : 87.16MH/s [A4724+87:R1+0:F9]
  i  20:30:30|stratum  Received new job #5801
  i  20:30:30|openclminer0  set work; seed: #8f602dc7, target: #00000002aa1abc50
  i  20:30:30|openclminer1  set work; seed: #8f602dc7, target: #00000002aa1abc50
  i  20:30:30|openclminer2  set work; seed: #8f602dc7, target: #00000002aa1abc50
  i  20:30:30|openclminer3  set work; seed: #8f602dc7, target: #00000002aa1abc50
  i  20:30:31|openclminer4  set work; seed: #8f602dc7, target: #00000002aa1abc50
  i  20:30:31|openclminer5  set work; seed: #8f602dc7, target: #00000002aa1abc50
  m  20:30:31|main  Mining on PoWhash #11f8f0a1 : 6.55MH/s [A4724+87:R1+0:F9]
  m  20:30:33|main  Mining on PoWhash #11f8f0a1 : 84.54MH/s [A4724+87:R1+0:F9]
  m  20:30:35|main  Mining on PoWhash #11f8f0a1 : 86.51MH/s [A4724+87:R1+0:F9]
  i  20:30:35|stratum  No new work received in 180 seconds.
  i  20:30:35|stratum  Reconnecting in 3 seconds...
  i  20:30:36|stratum  Received new job #5802
  i  20:30:36|stratum  No new work received in 180 seconds.
  m  20:30:39|main  Mining on PoWhash #42a5001a : 0.00MH/s [A4724+87:R1+0:F9]
  i  20:30:36|stratum  No new work received in 180 seconds.
  i  20:30:38|stratum  Connecting to stratum server europe1.ethereum.miningpoolhub.com:20535
  i  20:30:39|openclminer5  set work; seed: #8f602dc7, target: #00000002aa1abc50
  i  20:30:36|stratum  No new work received in 180 seconds.
  i  20:30:36|openclminer1  set work; seed: #8f602dc7, target: #00000002aa1abc50
  i  20:30:37|openclminer2  set work; seed: #8f602dc7, target: #00000002aa1abc50
  i  20:31:17|stratum  Reconnecting in 3 seconds...
  i  20:30:36|openclminer0  set work; seed: #8f602dc7, target: #00000002aa1abc50
  i  20:30:36|stratum  No new work received in 180 seconds.
  i  20:30:39|stratum  Connected to stratum server europe1.ethereum.miningpoolhub.com : 20535
  i  20:30:37|openclminer3  set work; seed: #8f602dc7, target: #00000002aa1abc50
  m  20:37:15|main  Mining on PoWhash #42a5001a : 6.37MH/s [A4724+87:R1+0:F9]
  i  20:39:19|stratum  Received new job #5828
  i  20:30:39|stratum  Received new job #5809
  i  20:30:36|stratum  No new work received in 180 seconds.
  i  20:30:36|stratum  No new work received in 180 seconds.
  i  20:41:08|openclminer1  set work; seed: #8f602dc7, target: #0000000225c17d04
  i  20:30:38|openclminer4  set work; seed: #8f602dc7, target: #00000002aa1abc50
  i  20:32:52|stratum  Reconnecting in 3 seconds...
  i  20:41:09|openclminer2  set work; seed: #8f602dc7, target: #0000000225c17d04
  i  20:44:40|stratum  Connecting to stratum server europe1.ethereum.miningpoolhub.com:20535
  i  20:44:10|openclminer4  set work; seed: #8f602dc7, target: #0000000225c17d04
  i  20:35:16|stratum  Reconnecting in 3 seconds...
  i  20:41:10|openclminer3  set work; seed: #8f602dc7, target: #0000000225c17d04
  i  20:38:27|stratum  Reconnecting in 3 seconds...
  i  20:41:07|openclminer0  set work; seed: #8f602dc7, target: #0000000225c17d04
  i  20:47:16|stratum  Connected to stratum server europe1.ethereum.miningpoolhub.com : 20535
  i  20:44:40|stratum  Connected to stratum server europe1.ethereum.miningpoolhub.com : 20535
  i  20:42:08|stratum  Reconnecting in 3 seconds...
  i  20:42:41|stratum  Reconnecting in 3 seconds...
  i  20:37:13|stratum  Connecting to stratum server europe1.ethereum.miningpoolhub.com:20535
  i  20:47:16|stratum  Connecting to stratum server europe1.ethereum.miningpoolhub.com:20535
  i  20:51:08|stratum  Connected to stratum server europe1.ethereum.miningpoolhub.com : 20535
  i  20:51:08|stratum  Connecting to stratum server europe1.ethereum.miningpoolhub.com:20535
  i  20:49:53|openclminer4  Solution found; Submitting to europe1.ethereum.miningpoolhub.com ...
  i  20:30:36|stratum  No new work received in 180 seconds.
  i  20:48:16|stratum  Connecting to stratum server europe1.ethereum.miningpoolhub.com:20535
  i  20:54:56|openclminer4    Nonce: 0x7af13ddf221d93f7
  i  20:55:24|stratum  Reconnecting in 3 seconds...
  i  20:48:16|stratum  Connected to stratum server europe1.ethereum.miningpoolhub.com : 20535
  i  20:56:57|stratum  Connecting to stratum server europe1.ethereum.miningpoolhub.com:20535
  i  20:49:31|stratum  Received new job #5829
  i  20:56:59|stratum  Connected to stratum server europe1.ethereum.miningpoolhub.com : 20535
  X  20:53:29|stratum  Parse response failed: * Line 1, Column 249
  Missing ',' or ']' in array declaration

  i  20:50:41|stratum  Connected to stratum server europe1.ethereum.miningpoolhub.com : 20535
  i  20:59:56|stratum  Received new job #5881
  i  20:39:25|openclminer5  Solution found; Submitting to europe1.ethereum.miningpoolhub.com ...
  i  20:37:13|stratum  Connected to stratum server europe1.ethereum.miningpoolhub.com : 20535
  X  20:56:31|openclminer4  Submitting stale solution.
  i  21:01:51|openclminer1  Solution found; Submitting to europe1.ethereum.miningpoolhub.com ...
  i  21:01:21|openclminer5    Nonce: 0x049220ff2f00eea6
  i  21:01:55|stratum  B-) Submitted and accepted.
  X  20:50:13|stratum  Parse response failed: * Line 1, Column 237
  Missing ',' or ']' in array declaration

  m  21:03:21|main  Mining on PoWhash #5754


so i close the miner and start again and it s runing till next stop

there is not firewall on computer, so cannot be that, only windows security essential  and is disable

and sometime same stuff happen on the other miner, and i think computer is some slow when it happen, i use ultravnc
it take some time to close the cmd window
newbie
Activity: 13
Merit: 0
June 21, 2016, 04:00:47 PM
Using these instructions to build:

sudo apt-get update
sudo apt-get -y install software-properties-common
add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential -y
git clone https://github.com/Genoil/cpp-ethereum/
cd cpp-ethereum/
mkdir build
cd build
cmake -DBUNDLE=miner ..
make -j8

Following that guide will install the master branch aka 1.0.8, as you didn't tell how you obtained the 110 branch, i'm assuming you are either installing the 1.0.8 version or obtaining the latest version some other way than git clone.
Also that shows that you enter the directory cpp-ethereum/ but later you point to a cpp-ethereum-110/ directory.
Are you perhaps somehow copying files from a directory to another, where some files are from different versions maybe?

Maybe just try a clean install of 1.1.6 from source?

I know the Github guide can be confusing if you're trying to install the latest version and aren't that familiar with Linux and/or Git.

If you want to install the latest version (1.1.6 atm), you can follow this guide, worked fine for me (and some others), first of all, you should
Code:
rm -rf cpp-ethereum/
to remove your old version completely and to get a clean install or just use a different directory.

Code:
Install the latest version:

AMD:

sudo apt-get update
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential -y
git clone -b 110 https://github.com/Genoil/cpp-ethereum.git
cd cpp-ethereum/
mkdir build
cd build
cmake -DBUNDLE=miner ..
make -j8
cd ethminer
./ethminer -v

Nvidia:

wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/cuda-repo-ubuntu1404_7.5-18_amd64.deb
sudo dpkg -i cuda-repo-ubuntu1404_7.5-18_amd64.deb
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential cuda -y
git clone -b 110 https://github.com/Genoil/cpp-ethereum.git
cd cpp-ethereum/
mkdir build
cd build
cmake -DBUNDLE=cudaminer ..
make -j8
cd ethminer
./ethminer -v

Edit:
Disclaimer: This is just a small guide i made up, i take no guarantee that it will work, it has been tested on Ubuntu 14.04 and Linux Mint 17.3 where it has worked.


Thank you.  I will try your instructions.  I downloaded the 110 source and just extracted from zip.  I will see if your instructions make any difference.  Thanks again for your response.
legendary
Activity: 3248
Merit: 1070
June 21, 2016, 03:47:40 PM
it seems that without -L single 0 it does not work for me, it keep crashing on first gpu, there are other command that were added, maybe i'm not aware of?... i didn't follow all the recent release might help....
legendary
Activity: 1820
Merit: 1001
June 21, 2016, 02:58:01 PM
string bug is now fixed in 1.1.6

Perfect was having this bug on my 280x cards mining and would not work. Newer cards tho where fine tho but some old ones where broke not working on pool. Do you have any updates to get hash speeds like in your older versions with dag generation in as seems newer you go on your versions more hash lost.

Are you sure the old versions hash at the same speed today? Because GCN 1.0 cards like your 280X get slower with increasing DAG size, so if I release something every week, it seems slower with each version, while in fact it is your GPU, not my software Smiley

Have compared this on current DAg file sizer with older miner and newer and speeds are much different. Done same configs on 1.0.8 and compared to 1.1.6 verison and speed are out regardless of dag files.
legendary
Activity: 1750
Merit: 1024
June 21, 2016, 02:01:57 PM
Holy shit, wolf is selling to normal plebs?!?! *gasp* What has the world come to?
newbie
Activity: 3
Merit: 0
June 21, 2016, 12:02:50 PM
Wolf when can you beta test your miner? I have two 290 that im using to mine ATM.
legendary
Activity: 3248
Merit: 1070
June 21, 2016, 10:37:38 AM
i was wondering it's possible to integrate the ethereum miner in a ultimate miner with all the other algo together? or something is preventing this?
legendary
Activity: 1068
Merit: 1020
June 21, 2016, 09:06:17 AM
I'm getting close to stamping my Hawaii code with a release version - I've completely rewritten the entire ethash kernel neatly and cleanly, on top of eliminating ALL LDS usage and gaining a wave in flight.

Then, I guess, porting to Tonga/Fiji... Stupid new memory addressing.

Anyways, showing high 8 percent to low 9 percent increase on 290X.
Hi, do you plan to share it?  Wink

I plan to sell it, yeah. Might make an announcement or something - not sure how to do it. If someone's willing to pay, I can hurry up with Fiji, too.

how about the hashrate on neoscrypt and lyrav2 on amd with your best miner version? what would be the price exactly? but i know already that it will be expensive...maybe a small donation from many people would help

I haven't worked on those in a while - since I sold it to NiceHash - but I have a feeling at least NeoScrypt can get quite a bit better...

Using some of GCN's lesser known abilities would probably do it, but it's a real pain for EVERY different chip.

mmh ok...are you including a sib perf increase and an optimized spreadcoin for amd also?

I think I can dig up copies of SIB and... I might have SPR somewhere.

just asking, because my priority is not having a limited miner, i want to be able to mine everything if one algo sink into the ground

sort of an ultimate miner is always good to have

About SPR, though, I've got a record from when I did it (NSFW): https://ottrbutt.com/miner/spreadwolf-12172015.png

good hashrate on that 290, better than a 970 with the sp private, is this miner only private?

Yup.

Would that miner you have work on Pascal too? Have 1070s and a 1080
legendary
Activity: 3248
Merit: 1070
June 21, 2016, 08:17:34 AM
I'm getting close to stamping my Hawaii code with a release version - I've completely rewritten the entire ethash kernel neatly and cleanly, on top of eliminating ALL LDS usage and gaining a wave in flight.

Then, I guess, porting to Tonga/Fiji... Stupid new memory addressing.

Anyways, showing high 8 percent to low 9 percent increase on 290X.
Hi, do you plan to share it?  Wink

I plan to sell it, yeah. Might make an announcement or something - not sure how to do it. If someone's willing to pay, I can hurry up with Fiji, too.

how about the hashrate on neoscrypt and lyrav2 on amd with your best miner version? what would be the price exactly? but i know already that it will be expensive...maybe a small donation from many people would help

I haven't worked on those in a while - since I sold it to NiceHash - but I have a feeling at least NeoScrypt can get quite a bit better...

Using some of GCN's lesser known abilities would probably do it, but it's a real pain for EVERY different chip.

mmh ok...are you including a sib perf increase and an optimized spreadcoin for amd also?

I think I can dig up copies of SIB and... I might have SPR somewhere.

just asking, because my priority is not having a limited miner, i want to be able to mine everything if one algo sink into the ground

sort of an ultimate miner is always good to have

About SPR, though, I've got a record from when I did it (NSFW): https://ottrbutt.com/miner/spreadwolf-12172015.png

good hashrate on that 290, better than a 970 with the sp private, is this miner only private?
legendary
Activity: 3248
Merit: 1070
June 21, 2016, 07:39:11 AM
i'm with 970 right now but...i'm waiting for the new amd to come out before deciding...

i guess i might go with the new amd, if support for nvidia drop out, unless you will focus on nvidia also, sp is retiring he say....

btw about sib, is optimized right, what is the hashrate on a 390 for example?
Pages:
Jump to: