Bitcoin Forum
May 28, 2024, 07:40:45 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 [40] 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 »
  Print  
Author Topic: ethminer-0.9.41-genoil-1.1  (Read 397328 times)
sorry2xs
Legendary
*
Offline Offline

Activity: 924
Merit: 1000


Dark Passenger Bitcoin miner 2013,Bitcoin node


View Profile
May 31, 2016, 05:36:06 AM
 #781

can this version 1.1.0 be tested by the general public if were can it be downloaded from

Please tip the Node 1MPWKB23NsZsXHANnFwVAWT86mL24fqAjF; KO4UX
THAT NO GOOD DO GOODER BAT!!!
jwon
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
May 31, 2016, 06:10:40 AM
 #782

can this version 1.1.0 be tested by the general public if were can it be downloaded from


https://github.com/Genoil/cpp-ethereum/tree/110/releases
bensam1231
Legendary
*
Offline Offline

Activity: 1750
Merit: 1024


View Profile
May 31, 2016, 11:28:20 AM
 #783

Is 1.1 out of beta now?

I buy private Nvidia miners. Send information and/or inquiries to my PM box.
parmatiya
Full Member
***
Offline Offline

Activity: 239
Merit: 250


View Profile
May 31, 2016, 11:39:58 AM
 #784

Is it possible to send out the miner hashing rates to a pool? I use the ethpool.org. I want to monitor my miners.

I have the same question.

Genoil (OP)
Sr. Member
****
Offline Offline

Activity: 438
Merit: 250


View Profile
May 31, 2016, 12:46:13 PM
Last edit: May 31, 2016, 12:59:41 PM by Genoil
 #785

Is 1.1 out of beta now?

no. have a few things i want to add to it:

- try and reduce CPU usage of stratum client on low-end CPUs
- serialize DAG generation option.

the current source release on the 110 branch has a bit of code in it to test the first point. If you have a low end CPU (such as G1840) and experience high CPU usage, build from source and add -SV 2 option. Only to test if it lowers CPU usage, code is far from ready...

ETH: 0xeb9310b185455f863f526dab3d245809f6854b4d
BTC: 1Nu2fMCEBjmnLzqb8qUJpKgq5RoEWFhNcW
BitMinerN8
Hero Member
*****
Offline Offline

Activity: 626
Merit: 500


Mining since May 2011.


View Profile
May 31, 2016, 01:00:32 PM
 #786

Genoil, I tried the new release, checkout the 110 branch.
Now I get a new error: [ 61%] Building NVCC (Device) object libethash-cuda/CMakeFiles/ethash-cuda.dir/ethash-cuda_generated_ethash_cuda_miner_kernel.cu.o
nvcc fatal   : Unsupported gpu architecture 'compute_61'
I'm getting this error too when trying to make the 110 branch with -DBUNDLE=cudaminer ..
Running on Mint 17.3, all other versions worked prior.

This is because the default list of supported compute platforms now includes Compute 6.1 for the 10x0 series. It requires CUDA 8 RC to build. If you don't want to install CUDA 8, you can add -DCOMPUTE=52 to the cmake line to support only Compute 5.2 devices,  -DCOMPUTE=30 to support only Compute 3.0 devices, and so on.

Ahh, thanks, makes sense now. Is there a way to support 3.5 and 5.0 on the -DCOMPUTE? For example if I have:
Listing CUDA devices.
FORMAT: [deviceID] deviceName
  • GeForce GTX 780 Ti
        Compute version: 3.5
        cudaDeviceProp::totalGlobalMem: 3220504576
[1] GeForce GTX 750 Ti
        Compute version: 5.0
        cudaDeviceProp::totalGlobalMem: 2147287040

(I would test, but I'm away from the rigs atm) Thanks.
BitMinerN8
Hero Member
*****
Offline Offline

Activity: 626
Merit: 500


Mining since May 2011.


View Profile
May 31, 2016, 01:14:02 PM
 #787

Genoil, I tried the new release, checkout the 110 branch.
Now I get a new error: [ 61%] Building NVCC (Device) object libethash-cuda/CMakeFiles/ethash-cuda.dir/ethash-cuda_generated_ethash_cuda_miner_kernel.cu.o
nvcc fatal   : Unsupported gpu architecture 'compute_61'
I'm getting this error too when trying to make the 110 branch with -DBUNDLE=cudaminer ..
Running on Mint 17.3, all other versions worked prior.

This is because the default list of supported compute platforms now includes Compute 6.1 for the 10x0 series. It requires CUDA 8 RC to build. If you don't want to install CUDA 8, you can add -DCOMPUTE=52 to the cmake line to support only Compute 5.2 devices,  -DCOMPUTE=30 to support only Compute 3.0 devices, and so on.

Ahh, thanks, makes sense now. Is there a way to support 3.5 and 5.0 on the -DCOMPUTE? For example if I have:
Listing CUDA devices.
FORMAT: [deviceID] deviceName
  • GeForce GTX 780 Ti
        Compute version: 3.5
        cudaDeviceProp::totalGlobalMem: 3220504576
[1] GeForce GTX 750 Ti
        Compute version: 5.0
        cudaDeviceProp::totalGlobalMem: 2147287040

(I would test, but I'm away from the rigs atm) Thanks.

Got in remote. -DCOMPUTE=52 seemed to work for both cards. (3.5 & 5.0)
bensam1231
Legendary
*
Offline Offline

Activity: 1750
Merit: 1024


View Profile
May 31, 2016, 06:06:25 PM
 #788

Is 1.1 out of beta now?

no. have a few things i want to add to it:

- try and reduce CPU usage of stratum client on low-end CPUs
- serialize DAG generation option.

the current source release on the 110 branch has a bit of code in it to test the first point. If you have a low end CPU (such as G1840) and experience high CPU usage, build from source and add -SV 2 option. Only to test if it lowers CPU usage, code is far from ready...

Will Dual miner support be in this release? >>

I buy private Nvidia miners. Send information and/or inquiries to my PM box.
Genoil (OP)
Sr. Member
****
Offline Offline

Activity: 438
Merit: 250


View Profile
May 31, 2016, 07:56:56 PM
 #789

Is 1.1 out of beta now?

no. have a few things i want to add to it:

- try and reduce CPU usage of stratum client on low-end CPUs
- serialize DAG generation option.

the current source release on the 110 branch has a bit of code in it to test the first point. If you have a low end CPU (such as G1840) and experience high CPU usage, build from source and add -SV 2 option. Only to test if it lowers CPU usage, code is far from ready...

Will Dual miner support be in this release? >>

 Kiss

In other news, the GPU DAG generator just passed the DAG change in one piece. I was testing the simplified stratum client when I saw it reinitialize on-the-fly.

ETH: 0xeb9310b185455f863f526dab3d245809f6854b4d
BTC: 1Nu2fMCEBjmnLzqb8qUJpKgq5RoEWFhNcW
malandante
Full Member
***
Offline Offline

Activity: 143
Merit: 100


View Profile
May 31, 2016, 08:50:42 PM
Last edit: May 31, 2016, 09:19:30 PM by malandante
 #790

Is 1.1 out of beta now?

no. have a few things i want to add to it:

- try and reduce CPU usage of stratum client on low-end CPUs
- serialize DAG generation option.

the current source release on the 110 branch has a bit of code in it to test the first point. If you have a low end CPU (such as G1840) and experience high CPU usage, build from source and add -SV 2 option. Only to test if it lowers CPU usage, code is far from ready...

Will Dual miner support be in this release? >>

 Kiss

In other news, the GPU DAG generator just passed the DAG change in one piece. I was testing the simplified stratum client when I saw it reinitialize on-the-fly.

Good job! Is it stable for running it 24/7? How does it compare in terms of hashrate with claymore's?

Edit: phrasing
Genoil (OP)
Sr. Member
****
Offline Offline

Activity: 438
Merit: 250


View Profile
June 01, 2016, 08:10:32 AM
 #791

I pushed a new 1.1.1 binary to the 110 branch. https://github.com/Genoil/cpp-ethereum/tree/110/releases

It has a simplified stratum client in an attempt to reduce CPU load on cheap CPUs. The work-timeout is disabled in this version as I've made it completely synchronous. Add -SV 2 to the command line to use it. The results aren't what I had hoped to achieve, but it does seem to use a bit less CPU. @Amph this latest build is even simpler than what I sent you but I don't think it'll make a big difference.

ETH: 0xeb9310b185455f863f526dab3d245809f6854b4d
BTC: 1Nu2fMCEBjmnLzqb8qUJpKgq5RoEWFhNcW
bensam1231
Legendary
*
Offline Offline

Activity: 1750
Merit: 1024


View Profile
June 01, 2016, 08:26:10 AM
 #792

Is 1.1 out of beta now?

no. have a few things i want to add to it:

- try and reduce CPU usage of stratum client on low-end CPUs
- serialize DAG generation option.

the current source release on the 110 branch has a bit of code in it to test the first point. If you have a low end CPU (such as G1840) and experience high CPU usage, build from source and add -SV 2 option. Only to test if it lowers CPU usage, code is far from ready...

Will Dual miner support be in this release? >>

 Kiss

In other news, the GPU DAG generator just passed the DAG change in one piece. I was testing the simplified stratum client when I saw it reinitialize on-the-fly.

From what I hear with the 1080 in Ethereum, it performs about just as well as 970... So there is a lot more overhead available for new generation Pascal and a dual miner will be all the more desirable...

I buy private Nvidia miners. Send information and/or inquiries to my PM box.
barabeku
Full Member
***
Offline Offline

Activity: 568
Merit: 100


umachit.fund


View Profile
June 01, 2016, 09:00:34 AM
 #793

I pushed a new 1.1.1 binary to the 110 branch. https://github.com/Genoil/cpp-ethereum/tree/110/releases

It has a simplified stratum client in an attempt to reduce CPU load on cheap CPUs. The work-timeout is disabled in this version as I've made it completely synchronous. Add -SV 2 to the command line to use it. The results aren't what I had hoped to achieve, but it does seem to use a bit less CPU. @Amph this latest build is even simpler than what I sent you but I don't think it'll make a big difference.

Can you help me to compile it latest version for k40 and m40 Teslas. im using CentOS.

Keselencoey
Newbie
*
Offline Offline

Activity: 58
Merit: 0


View Profile
June 01, 2016, 09:01:25 AM
 #794

can i use my saphire R9 390 Nitro to mining etherum ?
Genoil (OP)
Sr. Member
****
Offline Offline

Activity: 438
Merit: 250


View Profile
June 01, 2016, 09:19:09 AM
 #795

I pushed a new 1.1.2 binary to the 110 branch. https://github.com/Genoil/cpp-ethereum/tree/110/releases

Added mixed CL/CUDA mining, so you can mine both GPU types on a single ethminer instance. It's not possible to set different local/global work per GPU type yet. Will add that if there's any demand. I added this mostly to be able to build and test the DAG generation serialisation, because I have only 1 970 and 1 7950  Grin.

To enable, replace -G or -U flag with -X.

ETH: 0xeb9310b185455f863f526dab3d245809f6854b4d
BTC: 1Nu2fMCEBjmnLzqb8qUJpKgq5RoEWFhNcW
barabeku
Full Member
***
Offline Offline

Activity: 568
Merit: 100


umachit.fund


View Profile
June 01, 2016, 11:54:24 AM
 #796

I pushed a new 1.1.2 binary to the 110 branch. https://github.com/Genoil/cpp-ethereum/tree/110/releases

Added mixed CL/CUDA mining, so you can mine both GPU types on a single ethminer instance. It's not possible to set different local/global work per GPU type yet. Will add that if there's any demand. I added this mostly to be able to build and test the DAG generation serialisation, because I have only 1 970 and 1 7950  Grin.

To enable, replace -G or -U flag with -X.

can you please compile for cuda 6.5

tolazy
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
June 01, 2016, 12:02:50 PM
 #797

can i use my saphire R9 390 Nitro to mining etherum ?

yes you can. you will get about 28-29mhs
induktor
Hero Member
*****
Offline Offline

Activity: 710
Merit: 502



View Profile
June 01, 2016, 01:08:33 PM
 #798

I pushed a new 1.1.1 binary to the 110 branch. https://github.com/Genoil/cpp-ethereum/tree/110/releases

It has a simplified stratum client in an attempt to reduce CPU load on cheap CPUs. The work-timeout is disabled in this version as I've made it completely synchronous. Add -SV 2 to the command line to use it. The results aren't what I had hoped to achieve, but it does seem to use a bit less CPU. @Amph this latest build is even simpler than what I sent you but I don't think it'll make a big difference.

Hi Genoil, thanks!!
Question what do you mean by work-timeout disabled?
it means that if the pool stops responding the miner will stop mining or not?

thanks
indkt

BTC addr: 1vTGnFgaM2WJjswwmbj6N2AQBWcHfimSc
BitMinerN8
Hero Member
*****
Offline Offline

Activity: 626
Merit: 500


Mining since May 2011.


View Profile
June 01, 2016, 01:09:44 PM
 #799

I pushed a new 1.1.2 binary to the 110 branch. https://github.com/Genoil/cpp-ethereum/tree/110/releases

Added mixed CL/CUDA mining, so you can mine both GPU types on a single ethminer instance. It's not possible to set different local/global work per GPU type yet. Will add that if there's any demand. I added this mostly to be able to build and test the DAG generation serialisation, because I have only 1 970 and 1 7950  Grin.

To enable, replace -G or -U flag with -X.

Hi it seemed to compile ok, but I'm getting the following using -U
Code:
Using device: GeForce GTX 780 Ti (Compute 3.5)
Using device: GeForce GTX 750 Ti (Compute 5.0)
Cuda error in func 'set_constants' at line 143 : invalid device symbol.
Cuda error in func 'set_constants' at line 143 : invalid device symbol.
Segmentation fault

I compiled with:
Code:
git clone -b 110 https://github.com/Genoil/cpp-ethereum/ && cd cpp-ethereum && mkdir build && cd build && cmake -DCOMPUTE=52 -DBUNDLE=cudaminer .. && make -j8
That was working on 1.1.1 yesterday. Thanks for looking into it.
Genoil (OP)
Sr. Member
****
Offline Offline

Activity: 438
Merit: 250


View Profile
June 01, 2016, 01:15:17 PM
 #800

I pushed a new 1.1.1 binary to the 110 branch. https://github.com/Genoil/cpp-ethereum/tree/110/releases

It has a simplified stratum client in an attempt to reduce CPU load on cheap CPUs. The work-timeout is disabled in this version as I've made it completely synchronous. Add -SV 2 to the command line to use it. The results aren't what I had hoped to achieve, but it does seem to use a bit less CPU. @Amph this latest build is even simpler than what I sent you but I don't think it'll make a big difference.

Hi Genoil, thanks!!
Question what do you mean by work-timeout disabled?
it means that if the pool stops responding the miner will stop mining or not?

thanks
indkt

The async stratum client has a feature where the miner reconnects or fails over when it has been mining on the same job for over x seconds. I didn't implement it in the new client.

I pushed a new 1.1.2 binary to the 110 branch. https://github.com/Genoil/cpp-ethereum/tree/110/releases

Added mixed CL/CUDA mining, so you can mine both GPU types on a single ethminer instance. It's not possible to set different local/global work per GPU type yet. Will add that if there's any demand. I added this mostly to be able to build and test the DAG generation serialisation, because I have only 1 970 and 1 7950  Grin.

To enable, replace -G or -U flag with -X.

Hi it seemed to compile ok, but I'm getting the following using -U
Code:
Using device: GeForce GTX 780 Ti (Compute 3.5)
Using device: GeForce GTX 750 Ti (Compute 5.0)
Cuda error in func 'set_constants' at line 143 : invalid device symbol.
Cuda error in func 'set_constants' at line 143 : invalid device symbol.
Segmentation fault

I compiled with:
Code:
git clone -b 110 https://github.com/Genoil/cpp-ethereum/ && cd cpp-ethereum && mkdir build && cd build && cmake -DCOMPUTE=52 -DBUNDLE=cudaminer .. && make -j8
That was working on 1.1.1 yesterday. Thanks for looking into it.

It's kind of weird that that worked. Better for you to -DCOMPUTE=0 and remove Compute 6.1 from Cmakelists.txt in libethash-cuda folder.

ETH: 0xeb9310b185455f863f526dab3d245809f6854b4d
BTC: 1Nu2fMCEBjmnLzqb8qUJpKgq5RoEWFhNcW
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 [40] 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!