Bitcoin Forum
June 21, 2024, 07:34:30 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 [436] 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 ... 862 »
  Print  
Author Topic: [ANN] ¤ DMD Diamond 3.0 | Scarce ¤ Valuable ¤ Secure | PoS 3.0 | Masternodes 65%  (Read 1260361 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
BogdanCo
Hero Member
*****
Offline Offline

Activity: 729
Merit: 513


View Profile
October 12, 2015, 09:31:56 PM
 #8701

Hm... it's not possible to use sgminer?
And you don't have to change intensity to match mine.... For your video card it could be much bigger. I have an old card that after many test i come with this value.
usao
Legendary
*
Offline Offline

Activity: 1109
Merit: 1000



View Profile
October 12, 2015, 09:39:19 PM
 #8702

I don't see where to change it. All it lets me do is edit a CONF file.
The line sais: Miner Version: CGMiner 4.1.0 (API:3.1)
I don't see any option to change that.
It does say the running profile is sph-sgminer_groestl though, so I don't know how to tell what is actually being used.
BogdanCo
Hero Member
*****
Offline Offline

Activity: 729
Merit: 513


View Profile
October 12, 2015, 09:53:47 PM
 #8703

It was a link to the sgminer 4.1.0 on the 1st page from this thread but it seems is broken now...
You have to use only this version of the software sgminer 4.1.0. if you use 5.1.0 is not working for DMD.

But if the line from your screen says it's Cgminer 4.1.0 then it must be the correct one... maybe try to use my config with your sgminer .... see what happens.

Did you change "-k diamond" like in my config?
usao
Legendary
*
Offline Offline

Activity: 1109
Merit: 1000



View Profile
October 12, 2015, 10:00:20 PM
 #8704

It was a link to the sgminer 4.1.0 on the 1st page from this thread but it seems is broken now...
You have to use only this version of the software sgminer 4.1.0. if you use 5.1.0 is not working for DMD.

But if the line from your screen says it's Cgminer 4.1.0 then it must be the correct one... maybe try to use my config with your sgminer .... see what happens.

Did you change "-k diamond" like in my config?
Not sure how to add "-k diamond" to the CONF file.
Looks like you are launching from a comand line, but the PiMP is a web application interface, so I don't actually call the mining app directly.
I don't know how to modify what the web app is calling except for what's in the CONF file.
BogdanCo
Hero Member
*****
Offline Offline

Activity: 729
Merit: 513


View Profile
October 12, 2015, 10:07:13 PM
 #8705

"-k diamond" i think is the same like "kernel" : "groestlcoin" in your conf file...
cakes
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
October 13, 2015, 01:39:36 AM
 #8706

I'll post an example of my sgminer 4.1 (from main page) Diamond .bat file for pool mining:

-------------------------------------------------------------------
setx GPU_MAX_ALLOC_PERCENT 100

setx GPU_USE_SYNC_OBJECTS 1

sgminer -kdiamond -o stratum+tcp://your pool:xxxx -u ________ -p __________ --difficulty-multiplier 0.0039062500

-------------------------------------------------------------------

I set GPU settings in MSI Afterburner first and then in the settings of sgminer to make sure they were the same values and to also change powerlevel and fan, then used sgminer to write the .conf file. Granted, I still have to manually change the fan settings for some weird reason every time it starts but I've struggled otherwise with writing a conf of my own. This is also for a single GPU so settings will very from person to person. Hope this helps and happy mining!

Spidersbox
Legendary
*
Offline Offline

Activity: 1294
Merit: 1039


View Profile
October 13, 2015, 02:08:40 AM
Last edit: October 13, 2015, 02:20:35 AM by Spidersbox
 #8707

I suggest using sph-sgminer for linux. https://github.com/danbi/sph-sgminer.git
Hopefully this link is for v4.1.0-103-g00015-dirty (which is what I am using)

remember you will need the amd-catalyst drivers installed for monitoring temp and fans (for amd gpu's).

this is the script I use to launch the miner. If you have more than one GPU you may need to use sudo

start-diamond.sh
Code:
#!/bin/sh
export DISPLAY=:0
export GPU_MAX_ALLOC_PERCENT=100
export GPU_USE_SYNC_OBJECTS=1
cd sph-sgminer
./sgminer -k diamond -o stratum+tcp://<pool>:<port> -u <user> -p <password> --rawintensity 131088 --thread-concurrency 13188  -w 256  -g 1  --lookup-gap 2 --gpu-vddc 1.19 --gpu-engine 1150 --gpu-memclock 1500 --auto-fan --temp-target 70 --temp-cutoff 80 --gpu-powertune 20 --no-submit-stale --difficulty-multiplier .0039062500

also note that my rig has a r280 and several r270 gpu's  you may need to 'adjust' some of the settings for the card you are using.
Spidersbox
Legendary
*
Offline Offline

Activity: 1294
Merit: 1039


View Profile
October 13, 2015, 02:18:45 AM
 #8708

for windows I'm using sgminer v4.1.0 (no link - don't remember where I got it)

my bat file is

diamond.bat
Code:
del *.bin
set GPU_MAX_ALLOC_PERCENT=100
set GPU_USE_SYNC_OBJECTS=true
sgminer.exe -k diamond -o <pool>:<port> -u <user> -p <password> --xintensity 256 -g 1 --thread-concurrency 5400 -w 256 --lookup-gap 0 --difficulty-multiplier 0.0039062500 --no-submit-stale

these settings are for the second gpu in my laptop, you may need to 'adjust' these settings.

p.s. these do not use a config file
Spidersbox
Legendary
*
Offline Offline

Activity: 1294
Merit: 1039


View Profile
October 13, 2015, 02:28:32 AM
 #8709

if still no joy, could you tell us what video card you have? it could help with settings.
in linux type:
Code:
lspci | grep VGA
this should list the gpu's you have.
cakes
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
October 13, 2015, 02:30:18 AM
 #8710

Here's the link for sgminer 4.1.0 from the official DMD website:

https://sourceforge.net/projects/diamonddmd/files/sgminer_diamond_v4.1.0.zip/download - miner
http://bit.diamonds/#miningsoft - source page
anderson705
Full Member
***
Offline Offline

Activity: 233
Merit: 100



View Profile
October 13, 2015, 04:50:52 AM
 #8711

i need help with wallet not syn and stuck at block 267285, any help please
BogdanCo
Hero Member
*****
Offline Offline

Activity: 729
Merit: 513


View Profile
October 13, 2015, 06:26:50 AM
 #8712

if still no joy, could you tell us what video card you have? it could help with settings.
in linux type:
Code:
lspci | grep VGA
this should list the gpu's you have.

He is using a Radeon R9-280x.
cryptonit
Legendary
*
Offline Offline

Activity: 3038
Merit: 1053


bit.diamonds | uNiq.diamonds


View Profile WWW
October 13, 2015, 07:33:43 AM
 #8713

i only mine with nvidia this days

but for AMD based cards there is a dedicated group of people around pallas which did improve mining power for AMD cards at groestl/DMD-groestl

here u can get in touch with them and read what they created so far

https://bitcointalk.org/index.php?topic=779598.0l  

 
  Diamond [DMD]     uNiq.Diamonds  
Scarce✦✦✦✦ Valuable ✦✦✦✦ Secure ✦                     ▬ a collector experience ▬                
BogdanCo
Hero Member
*****
Offline Offline

Activity: 729
Merit: 513


View Profile
October 13, 2015, 08:00:00 AM
 #8714

i only mine with nvidia this days

but for AMD based cards there is a dedicated group of people around pallas which did improve mining power for AMD cards at groestl/DMD-groestl

here u can get in touch with them and read what they created so far

https://bitcointalk.org/index.php?topic=779598.0l  

I was also using latest Wolf0 Tahiti binary and for a HD 5970 I get ~ 11 Mh/s for DMD groestl algo. I used the sgminer v4.1.0 and the old binary I replaced with the one from Wolf0 because it's better and optimized.
BogdanCo
Hero Member
*****
Offline Offline

Activity: 729
Merit: 513


View Profile
October 13, 2015, 08:06:29 AM
 #8715

@popshot

It's possible please to correct the broken link with the mining software under the Mining Pools from the first page of the thread?

Thanks
presstab
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000


Blockchain Developer


View Profile
October 13, 2015, 03:19:47 PM
 #8716

Hey guys, just checking in to confirm that I received payment for the block explorer. I have the chain fully synced, and will hopefully have the explorer up and running either today or tomorrow. I am adding a bit more ram to my server so it is less laggy, so waiting on the ticket, and also trying to figure out why dmd is consuming a large amount of CPU. I will let you all know when it is up and running.

Projects I Contribute To: libzerocoin | Veil | PIVX | HyperStake | Crown | SaluS
BogdanCo
Hero Member
*****
Offline Offline

Activity: 729
Merit: 513


View Profile
October 13, 2015, 03:55:34 PM
 #8717

Hey guys, just checking in to confirm that I received payment for the block explorer. I have the chain fully synced, and will hopefully have the explorer up and running either today or tomorrow. I am adding a bit more ram to my server so it is less laggy, so waiting on the ticket, and also trying to figure out why dmd is consuming a large amount of CPU. I will let you all know when it is up and running.

Because it's the best coin Tongue

Thank you presstab for your work Smiley
presstab
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000


Blockchain Developer


View Profile
October 13, 2015, 05:37:21 PM
 #8718

CPU use looks fine now after restarting the daemon. Probably just got hung up on something. Got my extra RAM added, and hope to have you guys up and running tonight!

Projects I Contribute To: libzerocoin | Veil | PIVX | HyperStake | Crown | SaluS
vince232
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
October 13, 2015, 08:20:47 PM
 #8719

hi. are there updates planned for dmd? some kind of roadmap?
or we just wait for the halving of the PoS to push the price up because dmd will be more rare?
BogdanCo
Hero Member
*****
Offline Offline

Activity: 729
Merit: 513


View Profile
October 13, 2015, 10:16:36 PM
 #8720

i need help with wallet not syn and stuck at block 267285, any help please

Have you tried to download the block chain from the 1st page of this thread and let it sync again?
Pages: « 1 ... 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 [436] 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 ... 862 »
  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!