Bitcoin Forum
May 06, 2024, 11:13:06 PM *
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 ... 83 »
  Print  
Author Topic: [ANN][X11/X13] X11 (Darkcoin)/X13 (Marucoin) miner (based on sph-sgminer)  (Read 351506 times)
usahero
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
May 26, 2014, 08:20:16 AM
 #241

which are recommended drivers for this? I am only getting 2.4Mhash on 280x and 1.75Mhash on 7950's with 14.4 on win7 64.
1715037186
Hero Member
*
Offline Offline

Posts: 1715037186

View Profile Personal Message (Offline)

Ignore
1715037186
Reply with quote  #2

1715037186
Report to moderator
1715037186
Hero Member
*
Offline Offline

Posts: 1715037186

View Profile Personal Message (Offline)

Ignore
1715037186
Reply with quote  #2

1715037186
Report to moderator
1715037186
Hero Member
*
Offline Offline

Posts: 1715037186

View Profile Personal Message (Offline)

Ignore
1715037186
Reply with quote  #2

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

Posts: 1715037186

View Profile Personal Message (Offline)

Ignore
1715037186
Reply with quote  #2

1715037186
Report to moderator
Elun
Member
**
Offline Offline

Activity: 117
Merit: 10


View Profile
May 26, 2014, 08:25:03 AM
 #242

Getting SICK card warnings pretty easy (about 60 minutes) on my TRI-X OC R9 290X cards.

Heat/ventilation not an issue.

Anyway you can back up the SICK warning to 120 seconds instead of 60?

This is with gpu-threads 1, I am experimenting with threads 2 right now.
I don't know anything about sgminer source code architecture, and what i wrote below only my guess:
in sgminer.c we have this:
Code:
#define WATCHDOG_SICK_TIME		120
and ~100 lines of code below:
Code:
 else if (cgpu->status == LIFE_WELL && (now.tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
thr->rolling = cgpu->rolling = 0;
cgpu->status = LIFE_SICK;
applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
cgtime(&thr->sick);
}
Looks like it's actually 120 seconds, but in log writes 60 seconds.
Sorry for my bad english.
ingvarfervent
Sr. Member
****
Offline Offline

Activity: 826
Merit: 302



View Profile
May 26, 2014, 08:42:07 AM
 #243

Testing https://bitcointalk.org/index.php?topic=623409.msg6940574#msg6940574

Results:  Cheesy

7970 1050\1500 = 3.200

Code:
"intensity" : "20",
"vector" : "1",
"worksize" : "256",
"kernel" : "x11mod",
"thread-concurrency" : "8192",
"lookup-gap" : "2",
"gpu-threads" : "2"

6930 810\900 = 1.550 . Can give more if -I 20, but bad responding ( main PC )

Code:
"intensity" : "15",
"vector" : "1",
"worksize" : "64",
"kernel" : "x11mod",
"thread-concurrency" : "8192",
"lookup-gap" : "2",
"gpu-threads" : "1"
110110101
Legendary
*
Offline Offline

Activity: 1382
Merit: 1002



View Profile
May 26, 2014, 08:48:17 AM
 #244

...
Ok. Added zlib1.dll. https://www.dropbox.com/s/59lvecndm866bzz/sph-sgminer_x11mod_b2.zip
About HW. Works fine on my 280X. Maybe something wrong in conf, maybe I compile it wrong.
3.4 Mh/s with conf:
Code:
"intensity" : "20",
"vector" : "1",
"worksize" : "256",
"kernel" : "x11mod",
"thread-concurrency" : "8192",
"lookup-gap" : "2",
"gpu-threads" : "2"
I'm using amd app sdk 2.9
Thanks for testing.


Ran this as a drop-in replacement for the 2% miner on a small rig with 2x 290 Trix. Same settings and config (charged kernel from darkcoin to x11mod), just replaced the miner binary and achieved the same hashrates. So far all working great and I'll keep an eye open for possible problems. Oh, and achieved hashrates are about 3.5-3.6 MHs per card.
platinum4
Sr. Member
****
Offline Offline

Activity: 547
Merit: 250



View Profile
May 26, 2014, 08:52:06 AM
 #245

-ELUN-

can you change the WATCHDOG_SICK_TIME ---> 240, and change the log readout to '2 minutes' as well?

DEAD_TIME is 600s / 10m still right?

I scaled back gpu-engine and added gpu-threads 2 and it hasn't rolled into SICK yet, but a drop of about ~.2MH/s.

Guess I can't complain from the 2.5MH/s increase from the re-compile though!

My theory is sometimes when you run on a profit-switching stratum, if you dip down to a low difficulty and it hooks onto a block (long process time) it has the chance to go sick.  I'm supplying full voltage, and fans are not an issue.
thedarksun
Sr. Member
****
Offline Offline

Activity: 639
Merit: 251



View Profile
May 26, 2014, 09:06:53 AM
 #246

Guys how long time would it take to
Mine a darkcoin with geforce 670?
tr0ubles0me
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
May 26, 2014, 09:10:48 AM
 #247

Is there any chance of a windows binary with all the good stuff by Elun, but compiled by more reputable member like RRt5thoN or lasybear?

No hard feelings, Elun. You've done a wonderful job, but to post a binary without explanation first... Ouch.
Elun
Member
**
Offline Offline

Activity: 117
Merit: 10


View Profile
May 26, 2014, 09:14:49 AM
Last edit: May 26, 2014, 09:28:51 AM by Elun
 #248

-ELUN-

can you change the WATCHDOG_SICK_TIME ---> 240, and change the log readout to '2 minutes' as well?

DEAD_TIME is 600s / 10m still right?

I scaled back gpu-engine and added gpu-threads 2 and it hasn't rolled into SICK yet, but a drop of about ~.2MH/s.

Guess I can't complain from the 2.5MH/s increase from the re-compile though!

My theory is sometimes when you run on a profit-switching stratum, if you dip down to a low difficulty and it hooks onto a block (long process time) it has the chance to go sick.  I'm supplying full voltage, and fans are not an issue.
Code:
#define WATCHDOG_DEAD_TIME		600
Yes, 10m.
2 minutes sick version: https://www.dropbox.com/s/yxgcp6cck0oopd0/sph-sgminer_x11mod_b2_2min_SICK.zip
I'll wait your report. I don't know, can it harm your card or not, looks like it doesn't.
UPD: Oh, wait. WATCHDOG_SICK_TIME ---> 240 it's 4 minutes. Wrong time in log again.
Is there any chance of a windows binary with all the good stuff by Elun, but compiled by more reputable member like RRt5thoN or lasybear?

No hard feelings, Elun. You've done a wonderful job, but to post a binary without explanation first... Ouch.
No problem, i can understand it.
lasybear (OP)
Member
**
Offline Offline

Activity: 113
Merit: 14


View Profile
May 26, 2014, 09:29:54 AM
 #249

Is there any chance of a windows binary with all the good stuff by Elun, but compiled by more reputable member like RRt5thoN or lasybear?

No hard feelings, Elun. You've done a wonderful job, but to post a binary without explanation first... Ouch.
I asked Elun to compile binaries for Windows due to RRT5ON is unavailable now.
Hi is a reputable member of russian mining forum.
I trust him.
BTW, you can wait a bit for RRT5ON binaries. I guess, several hrs.

In case of SICK/DEAD please use less gpu-threads or thread-concurrency.
Elun
Member
**
Offline Offline

Activity: 117
Merit: 10


View Profile
May 26, 2014, 09:45:08 AM
 #250

Github source code updated 7hrs ago. Updated binaries for windows:
https://www.dropbox.com/s/59lvecndm866bzz/sph-sgminer_x11mod_b2.zip

Version with increased time to SICK state:
https://www.dropbox.com/s/yxgcp6cck0oopd0/sph-sgminer_x11mod_b2_2min_SICK.zip

Some info about increased time to SICK state: in code time delta compares with WATCHDOG_SICK_TIME. Original it was 120, it's logically to think that it will be 2 minutes. But in log it shows like 60s. Maybe constant was changed and log output not, or WATCHDOG_SICK_TIME 120 really mean 60s. In increased time SICK version WATCHDOG_SICK_TIME 240 and in log 2 minutes. I will research later 2 or 4 minutes is it.

Sorry for my bad english.
Nexillus
Full Member
***
Offline Offline

Activity: 169
Merit: 100


View Profile
May 26, 2014, 09:47:15 AM
 #251

Donations have been sent to both of you! Thank you again guys and great work Smiley

lasybear
Trans ID:
1a6dc89e4554395c14d9baf69704e7023ad42f6cdb9ed135af105bd0d36aacee

Remember remember the 5th of November
Trans ID:
945ca87bc1e56ed0f8719f2d6173e1c575ab303b2b0db420cf32a0d9f483f0cc
lasybear (OP)
Member
**
Offline Offline

Activity: 113
Merit: 14


View Profile
May 26, 2014, 09:57:26 AM
 #252

Donations have been sent to both of you! Thank you again guys and great work Smiley

lasybear
Trans ID:
1a6dc89e4554395c14d9baf69704e7023ad42f6cdb9ed135af105bd0d36aacee

Remember remember the 5th of November
Trans ID:
945ca87bc1e56ed0f8719f2d6173e1c575ab303b2b0db420cf32a0d9f483f0cc
Thank you, man!
phunixx
Member
**
Offline Offline

Activity: 121
Merit: 10


View Profile
May 26, 2014, 10:07:42 AM
 #253

Nice, in winblows X64 i get +- 3k on my 280X (not oc-ed) and before about 2k

Anyone knows how to implement this X11 mod into PIMP or BAMT?
oktay50000
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


View Profile
May 26, 2014, 10:10:39 AM
 #254

Nice, in winblows X64 i get +- 3k on my 280X (not oc-ed) and before about 2k

Anyone knows how to implement this X11 mod into PIMP or BAMT?

+1 on bamt with defult command and autostart

BTC : bc1qqz9hvv806w2zs42mx4rn576whxmr202yxp00e9

feel free to buy me a bear
Eastwind
Hero Member
*****
Offline Offline

Activity: 896
Merit: 1000



View Profile
May 26, 2014, 10:17:38 AM
 #255

Github source code updated 7hrs ago. Updated binaries for windows:
https://www.dropbox.com/s/59lvecndm866bzz/sph-sgminer_x11mod_b2.zip

Version with increased time to SICK state:
https://www.dropbox.com/s/yxgcp6cck0oopd0/sph-sgminer_x11mod_b2_2min_SICK.zip

Some info about increased time to SICK state: in code time delta compares with WATCHDOG_SICK_TIME. Original it was 120, it's logically to think that it will be 2 minutes. But in log it shows like 60s. Maybe constant was changed and log output not, or WATCHDOG_SICK_TIME 120 really mean 60s. In increased time SICK version WATCHDOG_SICK_TIME 240 and in log 2 minutes. I will research later 2 or 4 minutes is it.

Sorry for my bad english.


I used Virustotal.com to scan the 2min version. It detected 4 virus. Is it normal?

AhnLab-V3    Trojan/Win32.BitCoinMiner    20140525
AntiVir    APPL/Bitcoinminer.Gen    20140526
ESET-NOD32    a variant of Win32/BitCoinMiner.BF    20140526
McAfee-GW-Edition    Heuristic.LooksLike.Win32.Suspicious.J!86    20140525
lasybear (OP)
Member
**
Offline Offline

Activity: 113
Merit: 14


View Profile
May 26, 2014, 10:20:01 AM
 #256

Github source code updated 7hrs ago. Updated binaries for windows:
https://www.dropbox.com/s/59lvecndm866bzz/sph-sgminer_x11mod_b2.zip

Version with increased time to SICK state:
https://www.dropbox.com/s/yxgcp6cck0oopd0/sph-sgminer_x11mod_b2_2min_SICK.zip

Some info about increased time to SICK state: in code time delta compares with WATCHDOG_SICK_TIME. Original it was 120, it's logically to think that it will be 2 minutes. But in log it shows like 60s. Maybe constant was changed and log output not, or WATCHDOG_SICK_TIME 120 really mean 60s. In increased time SICK version WATCHDOG_SICK_TIME 240 and in log 2 minutes. I will research later 2 or 4 minutes is it.

Sorry for my bad english.


I used Virustotal.com to scan the 2min version. It detected 4 virus. Is it normal?

AhnLab-V3    Trojan/Win32.BitCoinMiner    20140525
AntiVir    APPL/Bitcoinminer.Gen    20140526
ESET-NOD32    a variant of Win32/BitCoinMiner.BF    20140526
McAfee-GW-Edition    Heuristic.LooksLike.Win32.Suspicious.J!86    20140525
Please do the same for any version of cgminer/sgminer you have.
You will be surprised )
Elun
Member
**
Offline Offline

Activity: 117
Merit: 10


View Profile
May 26, 2014, 10:22:16 AM
 #257

About McAfee: https://community.mcafee.com/thread/52688
Other detections: They just saying that it's application for mining.
anatolikostis
Legendary
*
Offline Offline

Activity: 2026
Merit: 1005



View Profile
May 26, 2014, 10:42:10 AM
 #258

Github source code updated 7hrs ago. Updated binaries for windows:
https://www.dropbox.com/s/59lvecndm866bzz/sph-sgminer_x11mod_b2.zip

Version with increased time to SICK state:
https://www.dropbox.com/s/yxgcp6cck0oopd0/sph-sgminer_x11mod_b2_2min_SICK.zip

Some info about increased time to SICK state: in code time delta compares with WATCHDOG_SICK_TIME. Original it was 120, it's logically to think that it will be 2 minutes. But in log it shows like 60s. Maybe constant was changed and log output not, or WATCHDOG_SICK_TIME 120 really mean 60s. In increased time SICK version WATCHDOG_SICK_TIME 240 and in log 2 minutes. I will research later 2 or 4 minutes is it.

Sorry for my bad english.

win7 x64/13.12cat
new soft from @Elun pulls the same hashrate

290x @960/1300 ----> 3.920mhs
290  @960/1250 ----> 3.650mhs

PS *.bin-file was taken from the original 2%-miner  Roll Eyes
tr0ubles0me
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
May 26, 2014, 10:49:06 AM
 #259

Github source code updated 7hrs ago. Updated binaries for windows:
https://www.dropbox.com/s/59lvecndm866bzz/sph-sgminer_x11mod_b2.zip

Version with increased time to SICK state:
https://www.dropbox.com/s/yxgcp6cck0oopd0/sph-sgminer_x11mod_b2_2min_SICK.zip

Some info about increased time to SICK state: in code time delta compares with WATCHDOG_SICK_TIME. Original it was 120, it's logically to think that it will be 2 minutes. But in log it shows like 60s. Maybe constant was changed and log output not, or WATCHDOG_SICK_TIME 120 really mean 60s. In increased time SICK version WATCHDOG_SICK_TIME 240 and in log 2 minutes. I will research later 2 or 4 minutes is it.

Sorry for my bad english.


What's the difference between sph-sgminer_x11mod_b2.zip in this post, and the one you posted on page 11? The size of the executables is different, but they are both called b2.
Elun
Member
**
Offline Offline

Activity: 117
Merit: 10


View Profile
May 26, 2014, 10:55:46 AM
 #260

What's the difference between sph-sgminer_x11mod_b2.zip in this post, and the one you posted on page 11? The size of the executable is different, but they all both are called b2
Sorry for equal names.
@lasybear  said that version from page 11 based on old version sph-sgminer, and have some issues.
Version from my last post based on newer version sph-sgminer. Better to use version from page 13.
Sorry for my bad english.
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 ... 83 »
  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!