Bitcoin Forum
May 04, 2024, 10:51:57 AM *
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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 ... 433 »
  Print  
Author Topic: [PASC] PascalCoin: Induplicatable NFT  (Read 990665 times)
Aetsen
Full Member
***
Offline Offline

Activity: 188
Merit: 100


View Profile
October 09, 2016, 06:30:42 PM
 #941

Microsoft Azure and Google cloud have free trials. I already used mine, but maybe some people can get set up on them to throw more hash onto the network.

Unlike traditional banking where clients have only a few account numbers, with Bitcoin people can create an unlimited number of accounts (addresses). This can be used to easily track payments, and it improves anonymity.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714819917
Hero Member
*
Offline Offline

Posts: 1714819917

View Profile Personal Message (Offline)

Ignore
1714819917
Reply with quote  #2

1714819917
Report to moderator
1714819917
Hero Member
*
Offline Offline

Posts: 1714819917

View Profile Personal Message (Offline)

Ignore
1714819917
Reply with quote  #2

1714819917
Report to moderator
anorganix
Copper Member
Sr. Member
****
Offline Offline

Activity: 970
Merit: 287


Per aspera ad astra


View Profile
October 09, 2016, 06:32:46 PM
 #942

I'm hitting the network with 65MH so it is WAY bigger than 240MH. I have not hit a block in a few hours.

I think it's around 1 GH/s by now...

I will never send private messages with payment requests for my auctions. I only communicate transparently via the forum (not Telegram, Discord, Skype & others). Please be wary of scammers.
Vorksholk
Legendary
*
Offline Offline

Activity: 1713
Merit: 1029



View Profile WWW
October 09, 2016, 06:32:56 PM
 #943

So... GPU miner. Spent the last few days figuring out how to make one, and finally got it working. It's a real hackjob. Here's basically what I did:
1. Figured out how to get PascalCoin to compile in the latest version of Berlin/RAD Studio
2. Attempted to modify it to add some type of RPC, encountered way too many issues primarily due to me not knowing the Pascal language
3. Settled on having the pascalcoin wallet write out mining data to a file that an external miner could read, find a solution, and write that solution in a new file
4. Wrote a SHA-256D CUDA miner from scratch to accomodate PascalCoin's larger-than-80-byte header



Not going to quote all of the previous posts since that'll be really confusing, but here's the main questions + other stuff I think people'll be interested in:

1. Is there a GPU miner?
Yes.

2. Is it optimized?

Not really. Took advantage of low-hanging fruit like midstates (so it only does 1/2 the work that a naive implementation would do), but no architecture-specific optimizations.

3. How fast is it?
I'm getting about 270 MH/s on an overclocked GTX 1080, about 190 MH/s on an overclocked GTX 1070, and about 105 MH/s on half of a Tesla K80.

4. How much mining power are you running with?
About 1 GH/s.

5. Would a well-built OpenCL miner on an AMD card be faster than the CUDA miner on a similarly-priced card?
Almost certainly, the performance can be compared with SHA-256D GPU miners for Bitcoin.

6. Will you release the GPU miner?
Yes. Having one person with 90+% of the hashrate is obviously not healthy for the network itself or for the value of the coin.

People are panicking so I'm making this post short, more info to come in a few minutes. Smiley

VeriBlock: Securing The World's Blockchains Using Bitcoin
https://veriblock.org
thedreamer
Legendary
*
Offline Offline

Activity: 1694
Merit: 1002

Go Big or Go Home.....


View Profile
October 09, 2016, 06:36:11 PM
 #944

Vork, you should do like the claymore miner for ethereum. Take a small % every few hours for your 'fees' and go balls out.

On the other hand kudos to you for thinking of the other people on the network.
I was going to look into compiling an AMD based GPU miner, but am lazy to spend the resources working on it.


Go Big or Go Home.
Aetsen
Full Member
***
Offline Offline

Activity: 188
Merit: 100


View Profile
October 09, 2016, 06:36:50 PM
 #945

Looking forward to more info Vork thanks for the reply. I have AMD cards and will be GPU mining as well once I can. I like that you are being fair and sharing your info and thanks for the hard work you did making a GPU miner.

CryptoTrout
Hero Member
*****
Offline Offline

Activity: 706
Merit: 500


https://twitter.com/CryptoTrout


View Profile WWW
October 09, 2016, 06:48:10 PM
 #946

lol i guess i will just stop mining now
ICOcountdown.com
Hero Member
*****
Offline Offline

Activity: 1008
Merit: 500


View Profile WWW
October 09, 2016, 06:50:54 PM
 #947

So... GPU miner. Spent the last few days figuring out how to make one, and finally got it working. It's a real hackjob. Here's basically what I did:
1. Figured out how to get PascalCoin to compile in the latest version of Berlin/RAD Studio
2. Attempted to modify it to add some type of RPC, encountered way too many issues primarily due to me not knowing the Pascal language
3. Settled on having the pascalcoin wallet write out mining data to a file that an external miner could read, find a solution, and write that solution in a new file
4. Wrote a SHA-256D CUDA miner from scratch to accomodate PascalCoin's larger-than-80-byte header



Not going to quote all of the previous posts since that'll be really confusing, but here's the main questions + other stuff I think people'll be interested in:

1. Is there a GPU miner?
Yes.

2. Is it optimized?

Not really. Took advantage of low-hanging fruit like midstates (so it only does 1/2 the work that a naive implementation would do), but no architecture-specific optimizations.

3. How fast is it?
I'm getting about 270 MH/s on an overclocked GTX 1080, about 190 MH/s on an overclocked GTX 1070, and about 105 MH/s on half of a Tesla K80.

4. How much mining power are you running with?
About 1 GH/s.

5. Would a well-built OpenCL miner on an AMD card be faster than the CUDA miner on a similarly-priced card?
Almost certainly, the performance can be compared with SHA-256D GPU miners for Bitcoin.

6. Will you release the GPU miner?
Yes. Having one person with 90+% of the hashrate is obviously not healthy for the network itself or for the value of the coin.

People are panicking so I'm making this post short, more info to come in a few minutes. Smiley

Thanks for the info Vorsholk much appreciated.

methylminer
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile WWW
October 09, 2016, 06:56:36 PM
 #948

Does this open the door for pool mining or just GPU solo mining?
TTE
Member
**
Offline Offline

Activity: 120
Merit: 10


View Profile
October 09, 2016, 06:56:54 PM
 #949

....

Mad respect to be honest.
Being able to do such thing is really awesome.
I hope you have a well payed job and doing this now just for fun because you can.
anorganix
Copper Member
Sr. Member
****
Offline Offline

Activity: 970
Merit: 287


Per aspera ad astra


View Profile
October 09, 2016, 06:58:39 PM
 #950

Dafuq? Shocked
Eagerly waiting to test on my 6GB 1060 WindForce.

I will never send private messages with payment requests for my auctions. I only communicate transparently via the forum (not Telegram, Discord, Skype & others). Please be wary of scammers.
Vorksholk
Legendary
*
Offline Offline

Activity: 1713
Merit: 1029



View Profile WWW
October 09, 2016, 07:00:24 PM
 #951

Continued:

Want to chat in real-time? Head over to #pascalcoin on webchat.freenode.net!

The whole point of crypto is that it's decentralized and not under the control of one miner or party. That being said, there needs to be some sort of incentive for people to develop software for the community, etc. And putting up a donation address doesn't really work Wink. It takes a lot of work/expertise to do this kind of thing.

7. Are you going to attack the network?
Absolutely not. There'd be no point.

8. What was the first GPU-mined block?
The first block I GPU-mined was 19751, about 3.5 hours ago.

9. Should I turn off my CPU miner?
Right now, mining is about 3x harder than it was before, since the difficulty is still adjusting to the GPU miner. Once it adjusts, it will be ~5x harder.

10. How do people normally get rewarded for making GPU/optimized mining software?
There's a few different ways:
  • Sell it in exclusivity to a large farm
  • Sell it to individual users
  • Make it closed-source but free to download, with a miner subsidy built in (mines for the developer for a percentage of the time)
  • Mine with it privately
  • Run the only pool compatible with the miner, and take a percentage cut of the pool's production
  • Release it for free/open source, and hope that someone donates to the donation address you post
  • Make a public bounty that, when reached, the GPU miner is open-sourced and freely released

11. What are the limitations of the existing miner?
It doesn't do any self-tuning, it requires a miner name of exactly 10 characters, the output is disgusting, it doesn't seem to produce full GPU utilization. It's not user-friendly, and the code's an absolute mess. It's a hackjob.

12. Does the miner work with the default PascalCoin wallet?
No, I had to modify the PascalCoin wallet to make external mining possible.

13. Does the miner work on AMD cards at all?
Nope.

Probably the most profitable way for me to have used the GPU miner would have been low-scale mining for a long period of time, which I obviously didn't do (what's the fun in that?).

VeriBlock: Securing The World's Blockchains Using Bitcoin
https://veriblock.org
anorganix
Copper Member
Sr. Member
****
Offline Offline

Activity: 970
Merit: 287


Per aspera ad astra


View Profile
October 09, 2016, 07:05:58 PM
 #952

What language did you use to code the new miner?

I will never send private messages with payment requests for my auctions. I only communicate transparently via the forum (not Telegram, Discord, Skype & others). Please be wary of scammers.
Vorksholk
Legendary
*
Offline Offline

Activity: 1713
Merit: 1029



View Profile WWW
October 09, 2016, 07:06:51 PM
 #953

What language did you use to code the new miner?

Some modifications to the wallet in Pascal, the miner itself is written in C++/CUDA. Smiley

VeriBlock: Securing The World's Blockchains Using Bitcoin
https://veriblock.org
Vorksholk
Legendary
*
Offline Offline

Activity: 1713
Merit: 1029



View Profile WWW
October 09, 2016, 07:10:46 PM
 #954

So, my goals are:
1. Make sure this GPU miner doesn't harm PascalCoin
2. Get a bit of profit from making this
3. After a while, have the GPU miner completely open-source

So I have two options which I think reasonably represent both of those goals:

1. Release a neutered version of the miner (~50% performance or something) closed-source and continue to mine with my faster version, and then release the full version completely open-sourced after a while (10 days?)

2. Continue to mine privately for another two days, and then release the full version completely open-sourced in about 48 hours.

Do these sound reasonable to people? Any preferences?

VeriBlock: Securing The World's Blockchains Using Bitcoin
https://veriblock.org
doktor1897
Hero Member
*****
Offline Offline

Activity: 882
Merit: 500



View Profile
October 09, 2016, 07:11:42 PM
 #955

So... GPU miner. Spent the last few days figuring out how to make one, and finally got it working. It's a real hackjob. Here's basically what I did:
1. Figured out how to get PascalCoin to compile in the latest version of Berlin/RAD Studio
2. Attempted to modify it to add some type of RPC, encountered way too many issues primarily due to me not knowing the Pascal language
3. Settled on having the pascalcoin wallet write out mining data to a file that an external miner could read, find a solution, and write that solution in a new file
4. Wrote a SHA-256D CUDA miner from scratch to accomodate PascalCoin's larger-than-80-byte header



Not going to quote all of the previous posts since that'll be really confusing, but here's the main questions + other stuff I think people'll be interested in:

1. Is there a GPU miner?
Yes.

2. Is it optimized?

Not really. Took advantage of low-hanging fruit like midstates (so it only does 1/2 the work that a naive implementation would do), but no architecture-specific optimizations.

3. How fast is it?
I'm getting about 270 MH/s on an overclocked GTX 1080, about 190 MH/s on an overclocked GTX 1070, and about 105 MH/s on half of a Tesla K80.

4. How much mining power are you running with?
About 1 GH/s.

5. Would a well-built OpenCL miner on an AMD card be faster than the CUDA miner on a similarly-priced card?
Almost certainly, the performance can be compared with SHA-256D GPU miners for Bitcoin.

6. Will you release the GPU miner?
Yes. Having one person with 90+% of the hashrate is obviously not healthy for the network itself or for the value of the coin.

People are panicking so I'm making this post short, more info to come in a few minutes. Smiley
info that should be studied for use pascal! thank you Vorksholk

                 ██            ██
               ██████        ██████
            ████████████      ██████
        ███████████████████    ██████
     ███████████    ██████████  ██████
  ██████████    ███    ████████  ▀█████
  ██████    ███████████   ██████  █████
  █████   ██████  ██████   █████  █████
  █████    ███      ███    █████  █████
  █████  ██            ██  █████  █████
  █████  ███          ███  █████  █████
  █████  ███████   ██████  █████  █████
  █████  ████████████████  █████  █████
  █████  ████████████████  █████  █████
  █████  ████  █████ ████  ████  ██████
  █████  ████   ███  ████  ███  ██████
  █████  ████    █   ████  █   ██████ 
  █████  ████        ██      ███████     
    ███  ████        █     ███████         
      █  ████         ▄██  █████       
           ██        ████  ███
            █        ██▀
`AiBB`  ———————————
HARNESSING THE POWER OF Ai IN CRYPTO
▐ -
`BUY TOKENS`
-▐   Twitter
  Telegram
  Facebook
|WP
Reddit
Medium
methylminer
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile WWW
October 09, 2016, 07:14:21 PM
 #956

So, my goals are:
1. Make sure this GPU miner doesn't harm PascalCoin
2. Get a bit of profit from making this
3. After a while, have the GPU miner completely open-source

So I have two options which I think reasonably represent both of those goals:

1. Release a neutered version of the miner (~50% performance or something) closed-source and continue to mine with my faster version, and then release the full version completely open-sourced after a while (10 days?)

2. Continue to mine privately for another two days, and then release the full version completely open-sourced in about 48 hours.

Do these sound reasonable to people? Any preferences?

This depends how long option one would take to produce. If its another day we might as well just wait the two days IMHO.
anorganix
Copper Member
Sr. Member
****
Offline Offline

Activity: 970
Merit: 287


Per aspera ad astra


View Profile
October 09, 2016, 07:15:00 PM
 #957

Just choose whatever you reason will keep 1). valid.

I will never send private messages with payment requests for my auctions. I only communicate transparently via the forum (not Telegram, Discord, Skype & others). Please be wary of scammers.
Vorksholk
Legendary
*
Offline Offline

Activity: 1713
Merit: 1029



View Profile WWW
October 09, 2016, 07:16:04 PM
 #958

So, my goals are:
1. Make sure this GPU miner doesn't harm PascalCoin
2. Get a bit of profit from making this
3. After a while, have the GPU miner completely open-source

So I have two options which I think reasonably represent both of those goals:

1. Release a neutered version of the miner (~50% performance or something) closed-source and continue to mine with my faster version, and then release the full version completely open-sourced after a while (10 days?)

2. Continue to mine privately for another two days, and then release the full version completely open-sourced in about 48 hours.

Do these sound reasonable to people? Any preferences?

This depends how long option one would take to produce. If its another day we might as well just wait the two days IMHO.

I could probably release it within an hour.

VeriBlock: Securing The World's Blockchains Using Bitcoin
https://veriblock.org
ICOcountdown.com
Hero Member
*****
Offline Offline

Activity: 1008
Merit: 500


View Profile WWW
October 09, 2016, 07:20:32 PM
 #959

So, my goals are:
1. Make sure this GPU miner doesn't harm PascalCoin
2. Get a bit of profit from making this
3. After a while, have the GPU miner completely open-source

So I have two options which I think reasonably represent both of those goals:

1. Release a neutered version of the miner (~50% performance or something) closed-source and continue to mine with my faster version, and then release the full version completely open-sourced after a while (10 days?)

2. Continue to mine privately for another two days, and then release the full version completely open-sourced in about 48 hours.

Do these sound reasonable to people? Any preferences?

This depends how long option one would take to produce. If its another day we might as well just wait the two days IMHO.

I could probably release it within an hour.

Is it possible to setup a community run pool using the miner? I think this will strengthen the network and be really beneficial to pascal development.

anorganix
Copper Member
Sr. Member
****
Offline Offline

Activity: 970
Merit: 287


Per aspera ad astra


View Profile
October 09, 2016, 07:22:55 PM
 #960

One of my miners got lucky, Poseidon found a block.
Woop woop!  Grin

I will never send private messages with payment requests for my auctions. I only communicate transparently via the forum (not Telegram, Discord, Skype & others). Please be wary of scammers.
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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 ... 433 »
  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!