Author

Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency - page 6822. (Read 9723814 times)

member
Activity: 117
Merit: 10
Does anyone have a nice config for Gigabyte 7970 3GB ?

This get me 1.7 Mhs each on 4x rig.

Code:
--thread-concurrency 16768 -I13 --gpu-engine 1050 --gpu-memclock 1450 --gpu-powertune 20 -g 2 -w 256 --lookup-gap 2 --auto-fan --expiry=1 --scan-time=1 --queue=0 2>logfile.txt

I hear I should get 2.0 but I can't seem to make that happen.
Try lowing the mem clock some. 1250 seems to be the sweet spot for my 7970s.
tjc
full member
Activity: 145
Merit: 100
Does anyone have a nice config for Gigabyte 7970 3GB ?

This get me 1.7 Mhs each on 4x rig.

Code:
--thread-concurrency 16768 -I13 --gpu-engine 1050 --gpu-memclock 1450 --gpu-powertune 20 -g 2 -w 256 --lookup-gap 2 --auto-fan --expiry=1 --scan-time=1 --queue=0 2>logfile.txt

I hear I should get 2.0 but I can't seem to make that happen.
sr. member
Activity: 364
Merit: 250
Pre-sale - March 18
Does anyone have a nice config for Gigabyte 7970 3GB ?
member
Activity: 81
Merit: 100
seems like there's still a lot of greatness to come out of this coin, not fully fully realized yet
legendary
Activity: 1358
Merit: 1002
exactly

And for those of you having trouble mining, are you using the miners from the front page, or the one recently posted?  It's not scrypt, you must use a darkcoin miner

Yes, I know. I've used the original miner and the updated one. Works perfectly fine on my desktop with a 7850, but my 7950s do nothing but throw out hardware errors. I cannot figure out what the problem is.

i will begin compiling a list of srttings regarding cpu and gpu mining
please pm me your cpu and gpu make / model, mem size, config file and startup settings
full member
Activity: 140
Merit: 100
DIFF @ 260

NET HASH @ 6.5GH/s

Too hard to mine Sad.
full member
Activity: 178
Merit: 100
exactly

And for those of you having trouble mining, are you using the miners from the front page, or the one recently posted?  It's not scrypt, you must use a darkcoin miner

Yes, I know. I've used the original miner and the updated one. Works perfectly fine on my desktop with a 7850, but my 7950s do nothing but throw out hardware errors. I cannot figure out what the problem is.
full member
Activity: 280
Merit: 100
The Future Of Work
exactly

And for those of you having trouble mining, are you using the miners from the front page, or the one recently posted?  It's not scrypt, you must use a darkcoin miner
legendary
Activity: 1358
Merit: 1002
Can someone explain the ASIC-resistance of DRK? Others use increased memory requirements relative to scrypt. Where does DRK's resistance come from? It uses multiple hashing functions but why can't an ASIC that performs all of them be built? How long will this resistance last?

first of, if you look back on how long it took for asics to take off, with bitcoins

the thing is to implement an algoryth onto silicon takes time, with lots of testing tomake sure everything is working correctly,

therefor, to implement 11 different ones takes even long erime, plus you have to make sure each one behaves correctly when bundled together,
and, that uses even more silicon estate, so more expensive to develope
full member
Activity: 280
Merit: 100
The Future Of Work
I'm approved !!!  Grin. Founding FATHER  Cheesy Cheesy Cheesy Cheesy Cheesy Cheesy

DRK COIN to brighten our LIFE.

A DARKCOIN Charity Foundation for needy children.  Grin

DONATION ADDRESS (DRK): XifqN6SNh4JngM9MqYbS1e77tAmoerQSaE

Is this approved by anyone?  Roll Eyes

pretty much open to all the you know what of the internet Smiley
member
Activity: 95
Merit: 10
http://benchdarkpool.myvnc.com/darkcoin/public/index.php
come to join our pool,  prop reward, fee 1%

(i posted pool earlier, but host have some problem with avaiability, so i changed hosting)
come and lets break some blocks.
hero member
Activity: 560
Merit: 500
Can someone explain the ASIC-resistance of DRK? Others use increased memory requirements relative to scrypt. Where does DRK's resistance come from? It uses multiple hashing functions but why can't an ASIC that performs all of them be built? How long will this resistance last?
legendary
Activity: 1358
Merit: 1002
Why can't I mine this coin? I have tried multiple pools and all I get in stale/invalid.

Bump..

Same reason I can't?  Huh
Why can't I mine this coin? I have tried multiple pools and all I get in stale/invalid.

Bump..

Same reason I can't?  Huh

gpu or cpu?
miner version?
cpu type
gpu type

settings you used?

what the client reports back
full member
Activity: 178
Merit: 100
Why can't I mine this coin? I have tried multiple pools and all I get in stale/invalid.

Bump..

Same reason I can't?  Huh
full member
Activity: 238
Merit: 100
Why can't I mine this coin? I have tried multiple pools and all I get in stale/invalid.

Bump..
full member
Activity: 168
Merit: 100
NET HASH @ 6GH/s. It is amazing !!!  Wink

With pool.darkcoin.io down?

Still? Please use p2p from now on so you aren't at the mercy of these pool operators.

Connected to p2pool --> http://112.175.123.82:8372/static/

now all i get are these msg from the miner:
Pool 0 difficulty changed to 0.XX
stratum from pool 0 requested work restart


What should I do??

Nope, that's normal at p2pool.

https://en.bitcoin.it/wiki/P2Pool#Frequently_Asked_Questions



One more p2pool. peer.
http://112.175.123.82:8372/static/
http://112.175.123.94:8372/static/



Nice, but can someone set up a p2pool nearer to EU or US?
I'd be happy to contribute/partner/invest in a server, but I work offshore and maintenance is too complicated when I'm behind very tight proxies

How do I pass a second (failover) pool to minerd? it doesn't seem to like second arguments... Or maybe I"m just doing it wrong
On Linux:
Code:
#!/bin/sh
## Miner Failover Script

## Will continously try each pool until one responds, ordered by priority.

#GLOBAL
## Set options
RETRIES="3"
SECONDS="5"
MINERD="minerd"

#POOL1
## Set userpass information for first pool
USERPASS1="user:pass"
URL1="stratum+tcp://pool1:port"

#POOL2
## Set userpass information for second pool
USERPASS2="user.pass"
URL2="stratum+tcp://pool2:port"

while :
do
$MINERD -a X11 --retries=$RETRIES --retry-pause=$SECONDS --userpass=$USERPASS1 --url=$URL1
$MINERD -a X11 --retries=$RETRIES --retry-pause=$SECONDS --userpass=$USERPASS2 --url=$URL2
done

On Windows:
Code:
@ECHO OFF
:: Miner Failover Script

:: Will continously try each pool until one responds, ordered by priority.

:GLOBAL
:: Set options
SET RETRIES=3
SET SECONDS=5
SET MINERD=minerd-corei7-avx.exe

:POOL1
:: Set userpass information for first pool
SET USERPASS1=user:pass
SET URL1=stratum+tcp://pool1:port

:POOL2
:: Set userpass information for second pool
SET USERPASS2=user:pass
SET URL2=stratum+tcp://pool2:port

:CONNECT
:: Normal connect
%MINERD% -a X11 --retries=%RETRIES% --retry-pause=%SECONDS% --userpass=%USERPASS1% --url=%URL1%
%MINERD% -a X11 --retries=%RETRIES% --retry-pause=%SECONDS% --userpass=%USERPASS2% --url=%URL2%
GOTO CONNECT

:END

+1 evil genius points for you!

Thanks for the two versions. Smiley
member
Activity: 119
Merit: 10
NEW VERSION CPU MINER, ABOUT 10% IMPROVEMENT*

https://github.com/elmad/darkcoin-cpuminer-1.3-avx-aes

I improved the cpu miner for another 10% and updated the project on github. I tried different processors and I've seen an improvement from 8% to 11%.
Remember, this version works only for processor that support the AES-NI instruction set.

Here the list of Intel processors supporting it:
http://ark.intel.com/search/advanced/?AESTech=true

And for AMD, the series:
Bulldozer-based, Piledriver-based and Jaguar-based.



Let me know what is your improvement with your cpu. Binaries for Windows version will come (some tip can accellerate the process Tongue)



*Donations are very appreciated Cheesy


I updated today the cpu miner.  Another little optimization. (i7-3770k 540khs)

There are 2 versions now: if you have not improvement cloning the branch master, there is a branch called "stable".
There I removed an optimization that doesnt work well with some CPUs. Surely, at 99%, for AMD processors is better the "stable" branch.


There is other margin to improve, but it needs time! Donate if you want that I still improve the CPU miner for the community.
full member
Activity: 238
Merit: 100
Why can't I mine this coin? I have tried multiple pools and all I get in stale/invalid.
legendary
Activity: 1176
Merit: 1036
Dash Developer
I meant transactions like 10.25636012 what happens to the .00636012 if you're only going down to two decimal places, and won't that make the .00636012 easy to track?

With that implementation there must be rounding to the lowest denomination, so the payment would be 10.25 or 10.256. I think the smallest denomination should be about a penny in value, so if the price rises we could add lower denominations.
full member
Activity: 140
Merit: 100
NAN !!!!!!!!!!!!!  Cheesy

DRK COIN to brighten our LIFE.

A DARKCOIN Charity Foundation for needy children.  Grin

DONATION ADDRESS (DRK): XifqN6SNh4JngM9MqYbS1e77tAmoerQSaE


Are you kidding? Here's my try

DRK COIN to brighten our my LIFE

A DARKCOIN Charity Foundation for getting blowjobs from cheap hookers , plz send maneyz anonymously


Jump to: