Bitcoin Forum
April 25, 2024, 05:15:30 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 »  All
  Print  
Author Topic: [ANN] ETHASH Miner - Eminer v0.6.1-RC2 Released (Windows, Linux, MacOS)  (Read 24697 times)
peteycamey
Legendary
*
Offline Offline

Activity: 1184
Merit: 1017



View Profile WWW
October 08, 2017, 12:18:02 AM
 #181

slightly better pool side reported hash rate and slightly higher power consumption.

very stable, and nice UI for cloud service.

intensity does not seem to make any difference.

overall 9/10.
1714022130
Hero Member
*
Offline Offline

Posts: 1714022130

View Profile Personal Message (Offline)

Ignore
1714022130
Reply with quote  #2

1714022130
Report to moderator
1714022130
Hero Member
*
Offline Offline

Posts: 1714022130

View Profile Personal Message (Offline)

Ignore
1714022130
Reply with quote  #2

1714022130
Report to moderator
1714022130
Hero Member
*
Offline Offline

Posts: 1714022130

View Profile Personal Message (Offline)

Ignore
1714022130
Reply with quote  #2

1714022130
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714022130
Hero Member
*
Offline Offline

Posts: 1714022130

View Profile Personal Message (Offline)

Ignore
1714022130
Reply with quote  #2

1714022130
Report to moderator
1714022130
Hero Member
*
Offline Offline

Posts: 1714022130

View Profile Personal Message (Offline)

Ignore
1714022130
Reply with quote  #2

1714022130
Report to moderator
1714022130
Hero Member
*
Offline Offline

Posts: 1714022130

View Profile Personal Message (Offline)

Ignore
1714022130
Reply with quote  #2

1714022130
Report to moderator
laik2
Sr. Member
****
Offline Offline

Activity: 652
Merit: 266



View Profile WWW
October 09, 2017, 07:27:23 PM
 #182

slightly better pool side reported hash rate and slightly higher power consumption.

very stable, and nice UI for cloud service.

intensity does not seem to make any difference.

overall 9/10.

Sorry for the late answer.
Yes intensity doesn't make any difference as of power usage, but it does reduce hashrate.

Miners Mining Platform [ MMP OS ] - https://app.mmpos.eu/
E-Miner (OP)
Newbie
*
Offline Offline

Activity: 58
Merit: 0


View Profile
October 10, 2017, 11:32:28 AM
 #183

any update soon?

I'm working for new update, I will announce soon.

You're doing better with keeping your IP hard(er) to get at - nice work. Might want to use C instead of Go so you can put in some anti-debugging traps, too.

Also... in your "Optimized 4 threads" OpenCL... I know this won't make a huge difference, but it still makes me sad:

Code:
bool update_share = thread_id == ((a >> 3) % THREADS);

Were that interpreted how you wrote it (verbatim), you would be eating... 4 clocks for the shift, and an untold number of clocks for the modulo, as AMD GCN doesn't even have modulo implemented - it's emulated. In reality, it's going to optimize that to an AND, making it look more like this:

Code:
bool update_share = thread_id == ((a >> 3) & (THREADS - 1))

Okay, that's 8 clocks - two full-rate instructions. Unless you use a local worksize that's not a power of two, and in that case, god help you. But we can do better.

First, for AMD - you're using LDS. Any worksize above wavefront size (64 work-items) is going to make those barriers take a LOT longer. Reason being, an AMD GCN CU (Compute Unit) only executes wavefronts. Larger work groupings are cut into wavefront-sized pieces and executed that way. If you use an LDS barrier with a worksize of 64 (wavefront size) - big deal, the whole wavefront is handled by that CU, and as such, the barriers can actually be omitted! And they are, by the AMD OCL compiler, in that case. When you make your group larger - suddenly you need to sync with other execution units: this is going to make you very sad. So - at least for AMD - I would keep it to 64 work-items/local group.

Now - we know the value of THREADS - the kernel says it's a 4-way - so... get you one of these...

Code:
#pragma OPENCL EXTENSION cl_amd_media_ops2 : enable

... and suddenly you have access to the amd_bfe builtin, which is purpose-built for what you wanna do! It gives you direct access to the v_alignbit_b32 instruction. And this gives us:

Code:
bool update_share = thread_id == amd_bfe(a, 3U, 2U);

Shaving at LEAST four ticks off the best the compiler would likely come up with (and I am being generous.) As it's looped, this magnifies the effect of the optimization, although it's still not much. Now you have the operation done in a single full-rate instruction, though - which IS an improvement.

WOW! tons of job like for me. @Wolf thanks your mention. I'll keep up these and will be share results here.
fr4nkthetank
Legendary
*
Offline Offline

Activity: 2294
Merit: 1182


Now the money is free, and so the people will be


View Profile
October 11, 2017, 01:39:25 PM
 #184

w0lf is a legend.  Always ready to help others, although he won't spoon feed you but when people want to learn i've seen him time and time again help out and spread the knowledge.  If only we had more wolfs in crypto and less sp's Smiley  I'll test out your new update when you get it out
terrxysq
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile
October 20, 2017, 01:25:44 PM
 #185

it does seem that sometimes the miner would just stop working solutions but would not crash. the error handling and watchdog feature need to be improved. wonder when will there be a new version coming out?
smparo
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile
October 27, 2017, 12:30:57 PM
 #186

Last days I notice that the software some times not report to the mining pool the stale share that I can view on the console Shocked
The problem that I had was low shares and for testing I started claymore miner and I notice that I found a lot of stale shares: it's okay ... the pool have some problems!   Embarrassed Cry Undecided
Now the problem is away but can you correct this problem?
smparo
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile
October 27, 2017, 12:44:55 PM
 #187

I forgot:
with claymore miner I saw all stale shares on the mining pool (claymore console stale shares=mining pool stale shares)
with eminer I saw few stale shares on the pool although I saw all on the console (eminer console stale shares>mining pool stale shares)
Just to clarify...

Great job and great miner anyway!!!  Grin
doktor83
Hero Member
*****
Offline Offline

Activity: 2520
Merit: 626


View Profile WWW
October 28, 2017, 06:04:07 PM
 #188

w0lf is a legend.  Always ready to help others, although he won't spoon feed you but when people want to learn i've seen him time and time again help out and spread the knowledge.  If only we had more wolfs in crypto and less sp's Smiley  I'll test out your new update when you get it out

Depends on his mood, sometimes really generous and helpful, and sometimes only bragging  Tongue

SRBMiner-MULTI thread - HERE
http://www.srbminer.com
fr4nkthetank
Legendary
*
Offline Offline

Activity: 2294
Merit: 1182


Now the money is free, and so the people will be


View Profile
October 30, 2017, 01:31:09 PM
 #189

w0lf is a legend.  Always ready to help others, although he won't spoon feed you but when people want to learn i've seen him time and time again help out and spread the knowledge.  If only we had more wolfs in crypto and less sp's Smiley  I'll test out your new update when you get it out

Depends on his mood, sometimes really generous and helpful, and sometimes only bragging  Tongue


hahahahaha for sure, and be warned if you ever click on one of his image links.  Be very warned Smiley
thehero18
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
October 30, 2017, 01:37:35 PM
 #190

any plans for dual mining?
doktor83
Hero Member
*****
Offline Offline

Activity: 2520
Merit: 626


View Profile WWW
October 30, 2017, 03:27:37 PM
 #191

w0lf is a legend.  Always ready to help others, although he won't spoon feed you but when people want to learn i've seen him time and time again help out and spread the knowledge.  If only we had more wolfs in crypto and less sp's Smiley  I'll test out your new update when you get it out

Depends on his mood, sometimes really generous and helpful, and sometimes only bragging  Tongue


hahahahaha for sure, and be warned if you ever click on one of his image links.  Be very warned Smiley

sexual content, yeah i know Cheesy
foxes and stuff Cheesy

SRBMiner-MULTI thread - HERE
http://www.srbminer.com
Victorio
Full Member
***
Offline Offline

Activity: 281
Merit: 100



View Profile
November 05, 2017, 09:14:03 AM
 #192

E-Miner,
How often does the devfee instance run and what coin does it mine?
I am looking to use Eminer rather than Claymore on new Ethash forks and DAG switching matters.

tyoma
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
November 05, 2017, 02:34:27 PM
 #193

E-Miner,
How often does the devfee instance run and what coin does it mine?
I am looking to use Eminer rather than Claymore on new Ethash forks and DAG switching matters.
You can choose coin in what devfee mine.
jeswin
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
November 05, 2017, 03:21:51 PM
 #194

Seems interesting, definitely will have a look 
terrxysq
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile
November 07, 2017, 02:57:59 AM
 #195

is development on this miner stopped?
phuocduong
Member
**
Offline Offline

Activity: 182
Merit: 10


View Profile
November 07, 2017, 03:21:13 AM
 #196

who compare with claymore?
flat1983
Member
**
Offline Offline

Activity: 199
Merit: 10


View Profile
November 07, 2017, 06:06:13 AM
 #197

I like  but but
E-Miner (OP)
Newbie
*
Offline Offline

Activity: 58
Merit: 0


View Profile
November 07, 2017, 09:03:07 AM
 #198

is development on this miner stopped?

Development continue. I will announce new version soon.
smparo
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile
November 07, 2017, 06:35:11 PM
 #199

who compare with claymore?

On AMD Rx580 I have done some compare with claymore and for me on mono mining the winner is eminer: the reported share on the pool is very close to share reported from eminer.
I have two RX580 (GPU 1150MHz - memory 2175MHz), with eminer i go to 61.2Mh/s while with claymore I have 61.4Mh/s
On the pool the effective hashrate with eminer is from 57.8 to 59.8Mh/s (rarely also 60.1Mh/s!!!!) while with claymore is from 57 to only 58Mh/s ( Huh)

I do not know why this happens but for now I prefer to use eminer!

Claymore has its merits in other peculiarities see the possibility of configuring Mhz and mV
smparo
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile
November 22, 2017, 08:56:20 AM
 #200

is development on this miner stopped?

Development continue. I will announce new version soon.

When you will release the new version? Soon = just some days from now or weeks?
Please keep us up to date  Wink
Pages: « 1 2 3 4 5 6 7 8 9 [10] 11 »  All
  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!