Bitcoin Forum
April 30, 2024, 07:55:33 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 ... 1315 »
  Print  
Author Topic: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000  (Read 2170602 times)
MOB
Hero Member
*****
Offline Offline

Activity: 493
Merit: 504


View Profile
September 11, 2014, 11:10:22 PM
 #9121

That's a really good "getting started" guide. Thank you for your work Smiley

No problem, I'm glad to help! I you have any input let me know and I will update it.

Also, it seems that calculation of nonces/minute may be off...
https://bitcointalk.org/index.php?topic=731923.msg8771161#msg8771161

It shows me calculating at 121,230 nonces/minute... but actual file growth is more along the lines of only 12,123.0 nonces/minute.
(Maybe this is from the message I got when compiling?)

...It might also be nice to have a "ETA" for completion time. But not really needed.

Maybe the CLOCKS_PER_SEC value doesn't match the actual clock() values on your platform (function that I use to retrieve the time). I will use the time() function instead.

Here is the new version:

GPU plot generator v2.0.1

Warning: to the AMD owners, the 14.4 catalyst driver cause a major bug. The generated files are corrupted. I will investigate on this problem. In the meantime, I recommend you to switch back your driver to the 13.12 version.

Changelog:
- Nonces display corrected (XX/YY nonces).
- Using time() function rather than clock() in nonces/minute computation.
- Nonces/minutes repeated at the end of the generation process to keep a trace of it after execution.
- ETA and elapsed time added.

Windows x86 binaries: https://mega.co.nz/#!TVEVjQ5L!Uyd2HuPTZSP9eARwjiChjd1P6BMWHQtYT0SGGHLrnuI
Sources: https://mega.co.nz/#!2RUwHAyC!IOxfTZk9PsRdPS7Z3a76MAT4vT3ygvp--r_dVQ5GaD4


If we are on 14.4 then do we need to delete anything generated with the GPU plotter and start over?
The network tries to produce one block per 10 minutes. It does this by automatically adjusting how difficult it is to produce blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714506933
Hero Member
*
Offline Offline

Posts: 1714506933

View Profile Personal Message (Offline)

Ignore
1714506933
Reply with quote  #2

1714506933
Report to moderator
AnonymousEconomist
Full Member
***
Offline Offline

Activity: 154
Merit: 100

Add me on Twitter! @AnonOnAMoose


View Profile
September 11, 2014, 11:15:49 PM
 #9122

Hey guys. Does anyone know why the block explorer still says we have only 108 million coins mined?

Shouldn't we be somewhere near 120mil now?

Add me on Twitter! @AnonOnAMoose
CHMinePeerz
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
September 11, 2014, 11:20:13 PM
 #9123

Hey guys. Does anyone know why the block explorer still says we have only 108 million coins mined?

Shouldn't we be somewhere near 120mil now?

block rew reduced from 10k to 9500/block

twig123
Full Member
***
Offline Offline

Activity: 164
Merit: 100


View Profile
September 11, 2014, 11:21:48 PM
 #9124

Code:
head -c `stat -c%s <n-path>` o-path | diff - <n-path>

should work.  Where o-path is the path to the old output, and n-path is the path to the new.
Seriously though, I have no idea what you are requesting.

If you're still running a plot on the GPU, could you then try running one of the CPU plotters with the same parameters (address, nonce range, stagger size) for a few minutes and check that they match in the part created by the CPU plotter?  Say the directory containing the GPU plotter output (the "plots" directory") is <GPU-path>, and the path to the CPU output is <CPU-path>.  Could you then run this command in a terminal and report back its output?  If they match, there should be no output.

Code:
head -c `stat -c%s <GPU-path>` <CPU-path> | diff - <CPU-path>
Gotcha.
I'll take a look into testing this tomorrow. Once the GPU plot I have going currently finishes.
[/quote]

I didn't forget... Plot file just finished.

I ran your test with some smaller plot files:
Quote
cd /media/twig/Burst_Coin_21/~~Linux~~/Plot_Generator
./plot 11111222223333344444 0 2000 1000 4

Quote
cd /media/twig/Burst_Coin_21/~~Linux~~/GPU_Plotter_v2.0.0/bin
./gpuPlotGenerator.exe generate 0 0 /media/twig/Burst_Coin_21/test/GPU 11111222223333344444 0 2000 1000 64 1024


Quote
head -c `stat -c%s /media/twig/Burst_Coin_21/test/GPU/11111222223333344444_0_2000_1000` /media/twig/Burst_Coin_21/test/CPU/11111222223333344444_0_2000_1000 | diff - /media/twig/Burst_Coin_21/test/CPU/11111222223333344444_0_2000_1000

After issuing the last command, it just returns to a prompt... no additional output. I assume this means the plot files match.
(also I am mining and finding shares from the GPU plot as well)



Warning: to the AMD owners, the 14.4 catalyst driver cause a major bug. The generated files are corrupted. I will investigate on this problem. In the meantime, I recommend you to switch back your driver to the 13.12 version.
My plots appear to be fine (on Linux) generated with the 14.4 catalyst driver, as compared to the same plot generated with the CPU

I'll test out v2.0.1 and see if there are any changes.

Bitcoin: 11c3RRAyVA33DrkNyRz9dfvLogvGvYKWL
AnonymousEconomist
Full Member
***
Offline Offline

Activity: 154
Merit: 100

Add me on Twitter! @AnonOnAMoose


View Profile
September 11, 2014, 11:22:17 PM
 #9125

Hey guys. Does anyone know why the block explorer still says we have only 108 million coins mined?

Shouldn't we be somewhere near 120mil now?

block rew reduced from 10k to 9500/block

Yeah I'm aware of that, but it has been stuck at 108.75 million for about 24 hours...

Add me on Twitter! @AnonOnAMoose
paradigmflux
Sr. Member
****
Offline Offline

Activity: 378
Merit: 254

small fry


View Profile WWW
September 11, 2014, 11:24:53 PM
 #9126

BurstMultipool.com was unexpectedly restarted by OVH and offline for a short time - it is back online now.  Please point your miners and help generate buy pressure.  Completely optimized, automated payouts.

I have also set up the startup scripts so in the future restarts by the VPS provider will result in the pool coming right back online

---
NXT Multipool! Mine Scrypt, SHA, Keccak or X11 for NXT! http://hashrate.org
http://hashrate.org/getting_started for port info!
paradigmflux
Sr. Member
****
Offline Offline

Activity: 378
Merit: 254

small fry


View Profile WWW
September 11, 2014, 11:31:07 PM
 #9127

BurstMultipool.com was unexpectedly restarted by OVH and offline for a short time - it is back online now.  Please point your miners and help generate buy pressure.  Completely optimized, automated payouts.

I have also set up the startup scripts so in the future restarts by the VPS provider will result in the pool coming right back online

The pool has issued shares for fractional ownership of it.
Dividends will begin once a portion of the shares have sold.
The asset number is 11375670541237055652

---
NXT Multipool! Mine Scrypt, SHA, Keccak or X11 for NXT! http://hashrate.org
http://hashrate.org/getting_started for port info!
bipben
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
September 11, 2014, 11:35:56 PM
 #9128

That's a really good "getting started" guide. Thank you for your work Smiley

No problem, I'm glad to help! I you have any input let me know and I will update it.

Also, it seems that calculation of nonces/minute may be off...
https://bitcointalk.org/index.php?topic=731923.msg8771161#msg8771161

It shows me calculating at 121,230 nonces/minute... but actual file growth is more along the lines of only 12,123.0 nonces/minute.
(Maybe this is from the message I got when compiling?)

...It might also be nice to have a "ETA" for completion time. But not really needed.

Maybe the CLOCKS_PER_SEC value doesn't match the actual clock() values on your platform (function that I use to retrieve the time). I will use the time() function instead.

Here is the new version:

GPU plot generator v2.0.1

Warning: to the AMD owners, the 14.4 catalyst driver cause a major bug. The generated files are corrupted. I will investigate on this problem. In the meantime, I recommend you to switch back your driver to the 13.12 version.

Changelog:
- Nonces display corrected (XX/YY nonces).
- Using time() function rather than clock() in nonces/minute computation.
- Nonces/minutes repeated at the end of the generation process to keep a trace of it after execution.
- ETA and elapsed time added.

Windows x86 binaries: https://mega.co.nz/#!TVEVjQ5L!Uyd2HuPTZSP9eARwjiChjd1P6BMWHQtYT0SGGHLrnuI
Sources: https://mega.co.nz/#!2RUwHAyC!IOxfTZk9PsRdPS7Z3a76MAT4vT3ygvp--r_dVQ5GaD4

So, this is just a cosmetic update? I don't know if it's just me, but my system would use 3GB total in the first 6 hours. Then later on, it would use double at 6~6.5GB and degradation of speed also. Is it possible there is a memory leak in the plotter? I'm running AMD 13.9 driver with 2.9.1 APP SDK.

Yes this is a minor update.
I'm working on a major update right now:
I'm trying to remove the final scoops re-ordering from the kernel to run it in pure CPU mode. This will remove the x2 GPU RAM overhead. I'm also trying to decorrelate the staggerSize and the necessary RAM amount (note that this will increase I/O operations when writting nonces to disk, but I'll give it a try. If it works well, we would be able to go to staggerSize=totalNoncesNumber).
I'm also reducing the cost of the step2 kernel to enhance nonces/minute.
With all of those improvements, it will be easier to make the multi-gpu aware version of the plotter.

Burst: BURST-YA29-QCEW-QXC3-BKXDL
bipben
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
September 11, 2014, 11:44:42 PM
 #9129

Code:
head -c `stat -c%s <n-path>` o-path | diff - <n-path>

should work.  Where o-path is the path to the old output, and n-path is the path to the new.
Seriously though, I have no idea what you are requesting.

If you're still running a plot on the GPU, could you then try running one of the CPU plotters with the same parameters (address, nonce range, stagger size) for a few minutes and check that they match in the part created by the CPU plotter?  Say the directory containing the GPU plotter output (the "plots" directory") is <GPU-path>, and the path to the CPU output is <CPU-path>.  Could you then run this command in a terminal and report back its output?  If they match, there should be no output.

Code:
head -c `stat -c%s <GPU-path>` <CPU-path> | diff - <CPU-path>
Gotcha.
I'll take a look into testing this tomorrow. Once the GPU plot I have going currently finishes.

I didn't forget... Plot file just finished.

I ran your test with some smaller plot files:
Quote
cd /media/twig/Burst_Coin_21/~~Linux~~/Plot_Generator
./plot 11111222223333344444 0 2000 1000 4

Quote
cd /media/twig/Burst_Coin_21/~~Linux~~/GPU_Plotter_v2.0.0/bin
./gpuPlotGenerator.exe generate 0 0 /media/twig/Burst_Coin_21/test/GPU 11111222223333344444 0 2000 1000 64 1024


Quote
head -c `stat -c%s /media/twig/Burst_Coin_21/test/GPU/11111222223333344444_0_2000_1000` /media/twig/Burst_Coin_21/test/CPU/11111222223333344444_0_2000_1000 | diff - /media/twig/Burst_Coin_21/test/CPU/11111222223333344444_0_2000_1000

After issuing the last command, it just returns to a prompt... no additional output. I assume this means the plot files match.
(also I am mining and finding shares from the GPU plot as well)



Warning: to the AMD owners, the 14.4 catalyst driver cause a major bug. The generated files are corrupted. I will investigate on this problem. In the meantime, I recommend you to switch back your driver to the 13.12 version.
My plots appear to be fine (on Linux) generated with the 14.4 catalyst driver, as compared to the same plot generated with the CPU

I'll test out v2.0.1 and see if there are any changes.
[/quote]

That's a good news, even if I will have to investigate more on this part ^^

For those who already generated some files with the plotter, to make sure the generation is successful, do the following :
Generate a file with the same parameters as your full plot file (address + offset + stagger) but with a noncesNumber of 1.
The generated file has to match with the first bytes of your full file.

Burst: BURST-YA29-QCEW-QXC3-BKXDL
BurstBurst
Full Member
***
Offline Offline

Activity: 494
Merit: 100



View Profile
September 11, 2014, 11:50:39 PM
 #9130

Plotted 28 TB. Average 21K burst per day at rate of 0.00000330 BTC with 0.0693 BTC Profit sent to BTC-E. POC is wonderful.

9 TB more to complete a total of 8 HDD Plot.  Smiley

Ordered another 12 HDD (Seagate Desktop HDD 6TB 7200RPM STBD6000100) from Amazon. Should receive it next week so I'm still have time to setup 2 new PCs station with each to handle 6 HDD.


phreakk
Sr. Member
****
Offline Offline

Activity: 307
Merit: 250



View Profile
September 12, 2014, 12:11:50 AM
 #9131

Plotted 28 TB. Average 21K burst per day at rate of 0.00000330 BTC with 0.0693 BTC Profit sent to BTC-E. POC is wonderful.

9 TB more to complete a total of 8 HDD Plot.  Smiley

Ordered another 12 HDD (Seagate Desktop HDD 6TB 7200RPM STBD6000100) from Amazon. Should receive it next week so I'm still have time to setup 2 new PCs station with each to handle 6 HDD.




Not profit if you just ordered 12 HDDs!

     ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
     █▀█▄              █▀ ▀█▄
     █  ▀█▄          ▄█     ▀█▄
     █    ▀█▄       █▀         ▀▄
     █       █▄   ▄█             ▀█▄
     █         ▀▄█▀                ▀█▄
     █          ███▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█▄
     █         ██▌ █▄                ▄█▀
     █        █▌█▌   █▄            ▄▀
     █       ▐▌ █     ▀█▄       ▄█▀
     █      ▐█  █       ▀█▄   ▄█▀
     █      █  ▐█         ▀█▄▀
     █     █   ▐▌           ▀▄
     █    █   ▄▀ ▀█▄▄         ▀▄
     █   █▀ ▄█       ▀█▄▄       ▀▄
     █  █▌ █▀            ▀█▄▄     █▄
     █ ▐▌▄█                  ▀█▄▄  ▀█▄
     █▐██▀                       ▀█▄ ▀█▄
     ██▀                            ▀▀███
     █
.
RATEONIUM

 
GLOBAL BLOCKCHAIN BASED PRODUCT
██  ██
SERVICE RATING PLATFORM
██  ██

 
Twitter       Telegram     Reddit
█ RATE █    █ TRADE  █   █ INVEST █
procrastinationtm
Member
**
Offline Offline

Activity: 364
Merit: 10


View Profile
September 12, 2014, 12:13:34 AM
 #9132

Plotted 28 TB. Average 21K burst per day at rate of 0.00000330 BTC with 0.0693 BTC Profit sent to BTC-E. POC is wonderful.

9 TB more to complete a total of 8 HDD Plot.  Smiley

Ordered another 12 HDD (Seagate Desktop HDD 6TB 7200RPM STBD6000100) from Amazon. Should receive it next week so I'm still have time to setup 2 new PCs station with each to handle 6 HDD.




Not profit if you just ordered 12 HDDs!

It's profitable since HDD's are easily resellable.
procrastinationtm
Member
**
Offline Offline

Activity: 364
Merit: 10


View Profile
September 12, 2014, 12:23:32 AM
 #9133

Would anyone be interested in a buying shares of a mining operation? We currently are plotting 48tb with another 48tb coming in soon.
mmmaybe
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250



View Profile WWW
September 12, 2014, 12:34:03 AM
 #9134

Great, thanke Smiley

Any similar code for the wallet available...?


Windows
Code:
@echo off
cls
:start
java -cp pocminer_pool.jar;lib/*;lib/akka/*;lib/jetty/* pocminer_pool.POCMiner mine http://127.0.0.1:8125 http://poolipgoeshere:8121
goto start

Linux
Code:
while i="0"
do
java -cp pocminer_pool.jar:lib/*:lib/akka/*:lib/jetty/* pocminer_pool.POCMiner mine http://127.0.0.1:8125 http://poolipgoeshere:8121
done

 Grin
Was just about to post this for Windows Tongue


If I close the cmd that starts mining with the windows .bat with the above in it, then nothing opens back up.  How am I supposed to implement it?

Thanks!

If you close yourself it won't restart, but if it closes itself, then it restarts!! Just test it out.

omskbear
Full Member
***
Offline Offline

Activity: 152
Merit: 100


View Profile
September 12, 2014, 12:37:26 AM
 #9135

https://bchain.info/BURST/tools/calculator  lying or pool v1 has problems. Yesterday calculator = 20 000, at fact on v1 = 12000. Whats problem?
jzhoulon
Full Member
***
Offline Offline

Activity: 238
Merit: 100



View Profile
September 12, 2014, 12:39:52 AM
 #9136

https://bchain.info/BURST/tools/calculator  lying or pool v1 has problems. Yesterday calculator = 20 000, at fact on v1 = 12000. Whats problem?
it is not accurate, it is estimated by the difficulty and difficulty changed with the time

▀▀▀▀▀▀     SWIPE  │ Monetizing mobile engagement data, on the blockchain    ▀▀▀▀▀▀
▄▄▄▄         Whitepaper       Telegram       Twitter       Medium       Reddit          ▄▄▄▄
procrastinationtm
Member
**
Offline Offline

Activity: 364
Merit: 10


View Profile
September 12, 2014, 12:40:59 AM
 #9137

https://bchain.info/BURST/tools/calculator  lying or pool v1 has problems. Yesterday calculator = 20 000, at fact on v1 = 12000. Whats problem?

Pool is having issues as well.
omskbear
Full Member
***
Offline Offline

Activity: 152
Merit: 100


View Profile
September 12, 2014, 12:42:06 AM
 #9138

https://bchain.info/BURST/tools/calculator  lying or pool v1 has problems. Yesterday calculator = 20 000, at fact on v1 = 12000. Whats problem?

Pool is having issues as well.

you too on v1?
procrastinationtm
Member
**
Offline Offline

Activity: 364
Merit: 10


View Profile
September 12, 2014, 12:43:26 AM
 #9139

https://bchain.info/BURST/tools/calculator  lying or pool v1 has problems. Yesterday calculator = 20 000, at fact on v1 = 12000. Whats problem?

Pool is having issues as well.

you too on v1?

I was. I wasn't getting expected payouts so I decided to launch a private pool.
fivebells
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
September 12, 2014, 12:46:44 AM
 #9140

After issuing the last command, it just returns to a prompt... no additional output. I assume this means the plot files match.
(also I am mining and finding shares from the GPU plot as well)

Thank you.  The 121k nonces/min had me worried there.
Pages: « 1 ... 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 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 ... 1315 »
  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!