Pages:
Author

Topic: DiabloMiner GPU Miner - page 3. (Read 866206 times)

Wed
legendary
Activity: 1231
Merit: 1018
May 13, 2013, 02:28:58 PM
current hashrate / average hashrate
newbie
Activity: 15
Merit: 0
May 13, 2013, 02:07:27 PM
Github repo, issue tracker, and wiki
Newest binary, always updated to match newest git revision

I moved the README to the repo.
In wiki (https://en.bitcoin.it/wiki/DiabloMiner) I found info that DiabloMiner need SDK 2.1.
Now I have SDK 2.8 that comes with latest drivers.
Is DiabloMiner will be work normal and stable on this SDK? Or I need to delete it and install old 2.1?
Thanks

Don't bother with the wiki, no one updates that page. Follow the README instead: do not install the SDK, use the runtime that comes with the driver.
Thanks, everything work fine:
mhash: 2644,2/2615,0 | accept: 1589 | reject: 14 | hw error: 7
Why two value of mhash - 2644,2 and 2615,0? In readme I don't found this info.
legendary
Activity: 1162
Merit: 1000
DiabloMiner author
May 13, 2013, 01:07:43 PM
Github repo, issue tracker, and wiki
Newest binary, always updated to match newest git revision

I moved the README to the repo.
In wiki (https://en.bitcoin.it/wiki/DiabloMiner) I found info that DiabloMiner need SDK 2.1.
Now I have SDK 2.8 that comes with latest drivers.
Is DiabloMiner will be work normal and stable on this SDK? Or I need to delete it and install old 2.1?
Thanks

Don't bother with the wiki, no one updates that page. Follow the README instead: do not install the SDK, use the runtime that comes with the driver.
newbie
Activity: 15
Merit: 0
May 13, 2013, 11:52:01 AM
Github repo, issue tracker, and wiki
Newest binary, always updated to match newest git revision

I moved the README to the repo.
In wiki (https://en.bitcoin.it/wiki/DiabloMiner) I found info that DiabloMiner need SDK 2.1.
Now I have SDK 2.8 that comes with latest drivers.
Is DiabloMiner will be work normal and stable on this SDK? Or I need to delete it and install old 2.1?
Thanks
Wed
legendary
Activity: 1231
Merit: 1018
May 10, 2013, 05:05:46 AM
Still waiting for native stratum implementation Sad
Using proxy sucks Sad
newbie
Activity: 28
Merit: 0
May 09, 2013, 07:18:03 AM
Great miner, thanks!
Wed
legendary
Activity: 1231
Merit: 1018
May 06, 2013, 04:31:36 PM
I'm finished =)

If update is available (hash has changed)



If no update is available (hash has not changed)



Running




If you have some knowledge in bashscripting, here are the essential lines:

Code:
export current_hash=`curl --silent http://adterrasperaspera.com/DiabloMiner.zip.sha1`   #gets the current hash value
export app_hash=$(defaults -currentHost read oss.bitcoin-utils.diablominer 'AppHash')   #gets the saved hash value (from appsettings), on first start this value is empty. that means on first start it always do an update
...
    if [[ "$app_hash" != "$current_hash" ]]; then   #if hash dismatch
        echo "New version found!"
        cd $(dirname $0)/../Resources/miner
        rm -R target/   #delets old target directory
        echo "Downloading new version ..."
        curl -O http://adterrasperaspera.com/DiabloMiner.zip   #gets newest binary
        echo "Unpacking DiabloMiner..."
        unzip -qq DiabloMiner.zip DiabloMiner/target/*   # unzips the target directory
        mv DiabloMiner/target/ target/   # moves target directory to the right location
        echo "Cleaning temp files..."
        rm -R DiabloMiner/   # deletes empty folder
        rm DiabloMiner.zip   # deletes .zip file
        echo "Update successful"
        defaults -currentHost write oss.bitcoin-utils.diablominer 'AppHash'   -string  "$current_hash"   # writes current hash value to appsettings
        echo "Starting DiabloMiner"
        echo " "
    fi

The next days maybe I will do some code improvements, but in this state it should work like expected
Wed
legendary
Activity: 1231
Merit: 1018
May 06, 2013, 02:41:24 PM
Thank you very much, i'll try to implement it.
I'll inform you if i was successful.
legendary
Activity: 1162
Merit: 1000
DiabloMiner author
May 06, 2013, 02:38:12 PM
i can try it, but no promises. I'm really new at bashscripting.
I will do my best

There, I've added a sha1
http://adterrasperaspera.com/DiabloMiner.zip
http://adterrasperaspera.com/DiabloMiner.zip.sha1
Wed
legendary
Activity: 1231
Merit: 1018
May 06, 2013, 02:30:32 PM
i can try it, but no promises. I'm really new at bashscripting.
I will do my best
legendary
Activity: 1162
Merit: 1000
DiabloMiner author
May 06, 2013, 02:28:14 PM
It's very easy to modify it.

It's just a bashscript which asks for few userentries and then it starts diablominer with entered attributes.
Everyone with knowing of bashscripting can modify it.
To replace diablominer with a newer version, just replace "target" directory with a newer one.

Ahh, I never actually looked at the program, I assumed it was some non-interpreted binary.

If I add a .sha1 file along side the zip download, could you add whats needed to to automatically download DM with curl/wget?
Wed
legendary
Activity: 1231
Merit: 1018
May 06, 2013, 02:25:01 PM
It's very easy to modify it.

It's just a bashscript which asks for few userentries and then it starts diablominer with entered attributes.
Everyone with knowledge of bashscripting can modify it.
To replace diablominer with a newer version, just replace "target" directory with a newer one. The only binary in that package is the binary to start a bashscript Smiley
legendary
Activity: 1162
Merit: 1000
DiabloMiner author
May 06, 2013, 02:22:35 PM
Hey DiabloD3,
maybe you know the old thread (https://bitcointalk.org/?topic=8994.0'%3EMac) with DiabloMiner.app binary for Mac OS X.
This thread is really old, like the DiabloMiner in it.

I've updated that to current version of DiabloMiner and with more possibilites to change attributes.
I hope that's okay, i've published it here: https://bitcointalksearch.org/topic/diablominer-for-mac-os-x-new-version-193274

If you disagree with my work, I will remove the download, the thread and everything else.

I don't have a problem with it, I just wish MacCompiler had talked with me to make it automatically download and update it's copy of DM instead of packaging it inside, or at least released the source so other people could hack that functionality into it.
Wed
legendary
Activity: 1231
Merit: 1018
May 06, 2013, 12:22:05 PM
Hey DiabloD3,
maybe you know the old thread (https://bitcointalk.org/?topic=8994.0'%3EMac) with DiabloMiner.app binary for Mac OS X.
This thread is really old, like the DiabloMiner in it.

I've updated that to current version of DiabloMiner and with more possibilites to change attributes.
I hope that's okay, i've published it here: https://bitcointalksearch.org/topic/diablominer-for-mac-os-x-new-version-193274

If you disagree with my work, I will remove the download, the thread and everything else.


Wed
legendary
Activity: 1231
Merit: 1018
May 03, 2013, 07:18:37 PM
My problem is, i want to use slush's pool. But his pool only accepts stratum Sad

Slush have Stratum proxy software. http://mining.bitcoin.cz/stratum-mining (Links on top of the page)
You can use it for any pool, not only Slush's. For example, i am using this proxy for mine PPCoin with DiabloMiner on other stratum-pool.

I know of slush's proxy but a native implementation would be better =)
legendary
Activity: 1162
Merit: 1000
DiabloMiner author
May 03, 2013, 03:29:28 PM
NEVER install the OpenCL SDK, it is often the source of breakage.

I know, but now, with new drivers, it installs/updates automatically Sad

Thats not the SDK, thats the runtime that you're SUPPOSED to install. Always use the one that comes with the driver.
hero member
Activity: 518
Merit: 500
May 03, 2013, 02:45:40 PM
NEVER install the OpenCL SDK, it is often the source of breakage.

I know, but now, with new drivers, it installs/updates automatically Sad
hero member
Activity: 518
Merit: 500
May 03, 2013, 02:38:04 PM
My problem is, i want to use slush's pool. But his pool only accepts stratum Sad

Slush have Stratum proxy software. http://mining.bitcoin.cz/stratum-mining (Links on top of the page)
You can use it for any pool, not only Slush's. For example, i am using this proxy for mine PPCoin with DiabloMiner on other stratum-pool.
Wed
legendary
Activity: 1231
Merit: 1018
May 03, 2013, 01:20:23 PM
My problem is, i want to use slush's pool. But his pool only accepts stratum Sad
legendary
Activity: 1162
Merit: 1000
DiabloMiner author
May 03, 2013, 01:18:35 PM
i don't understand what you mean.
I'm asking for: when it will be possible to connect to pools with the stratum protocol with diablominer?

When I get around to adding it. GPUs do not benefit from stratum. DiabloMiner does not support FPGAs or ASICs yet.
Pages:
Jump to: