Bitcoin Forum
April 30, 2024, 08:17:30 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 99 100 101 102 103 104 105 »
1781  Bitcoin / Hardware / Re: Look what a little birdie brought me ;) on: May 31, 2016, 05:17:13 AM
sorry was away for the weekend...and yes I am under NDA so I can't say much other than what is publicly available. Chips are indeed BW's latest 1402 14nm. About 50 GH a chip @ .1 w/gh.
1782  Alternate cryptocurrencies / Mining (Altcoins) / Re: Reward 1BTC , Let AMD drivers work more than 8 gpus on: May 27, 2016, 06:06:16 PM
I have 10 GPUs running in our linux rigs. Will post an announcement soon as I will put them up for sale, but you can contact me if you want to know how its done.
1783  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] FutureBit MoonLander: A Modern and Efficient Scrypt USB Stick Miner! on: May 27, 2016, 05:26:16 PM
Hi,

I have an USB volt and amp meter.

It tells me how much volts, amps and watts is draining the USB port at any moment.

Any formula to get ML ASIC core voltage from that data?

Thanks.

Not really, since how much power the ASIC is using is not constant and depends on frequency etc. You can just measure the core voltage directly with a simple multimeter. Check out the main posts in the beginning of this thread for instructions.
1784  Bitcoin / Hardware / Look what a little birdie brought me ;) on: May 27, 2016, 05:15:48 PM
Ill let you guys figure it out Smiley



1785  Alternate cryptocurrencies / Mining (Altcoins) / Re: ethminer-0.9.41-genoil-1.1 on: May 25, 2016, 04:33:48 AM
I just ran a little test on both Nvidia (CUDA) and AMD (OpenCL) where I switched between current and next DAG every 5 blocks. No problems whatsoever. I don't have a multi-card rig, but I don't see how that should be any different, other than maybe a bit of clutter in the log output while changing DAGs.

Unfortunately DAGs are created so fast that the custom pcie bus we are running all these GPUs on is getting overloaded and the OpenCL calls hang. I guess I got lucky and it started the first time but quickly crashed.

The only way to solve this issue is to implement the same serialization fix claymour did on his miner (i.e. generate DAGs one by one serially, and any OpenCL calls have to have a delay in them (especially when new work is pushed to all the GPUs). Unfortunately I don't think thats an easy fix with ethminer and how threaded it is.

FYI this wont effect most users running less than 6 GPUs

This on 1.1 i assume. There's not so much going over the bus, just about 50-100MB of DAG cache. When did it actually crash? During DAG generation or during mining? Because when mining, it;s not really that much different from 1.0.8, other than some code commented out. It must be something else then this, perhaps removing all this DAG crap opened up another weird ethminer bug.

no i have debugged the issues extensively and confirmed its a bug with how fglrx makes openCL calls with multiple GPUs (and its made worse with bridges we use). Here is an example of where it usually crashes

Code:
[OPENCL]:Printing program log
[OPENCL]:
[OPENCL]:Creating cache buffer
[OPENCL]:Creating DAG buffer
[OPENCL]:Loading kernels
[OPENCL]:Writing cache buffer
0%
67%
[OPENCL]:Creating buffer for header.
[OPENCL]:Creating mining buffer 0
[OPENCL]:Creating mining buffer 1
[OPENCL]:Generating DAG data
8%
42%
25%
50%
33%
67%
8%
75%
17%
0%
50%
33%
58%
42%
75%
17%
83%
25%
8%
92%
58%
42%
50%
67%
83%
25%
92%
33%
17%
67%
50%
58%
75%
33%
42%
25%
75%
58%
67%
83%
92%
42%
50%
33%
83%
  ℹ  15:06:03|gpuminer0  set work to: #6a82dd23, target  #0000000112e0be82
67%
92%
75%
50%
58%
  ℹ  15:06:03|gpuminer1  set work to: #6a82dd23, target  #0000000112e0be82
42%
75%
83%
92%
58%
67%
50%
  ℹ  15:06:03|gpuminer2  set work to: #6a82dd23, target  #0000000112e0be82
83%
  ℹ  15:06:04|gpuminer3  set work to: #6a82dd23, target  #0000000112e0be82
92%
67%
75%
58%
75%
83%
67%
92%
83%
75%
92%
83%
92%

As you can see there is way to much I/O going on between 9 GPUs in short amount of time, which causes the openCL call hangs. The only fix until AMD decides to revamp the AMDGPU drivers is to serialize the OpenCL calls and make sure they don't overlap between GPUs.
1786  Alternate cryptocurrencies / Mining (Altcoins) / Re: ethminer-0.9.41-genoil-1.1 on: May 24, 2016, 07:13:45 PM
I just ran a little test on both Nvidia (CUDA) and AMD (OpenCL) where I switched between current and next DAG every 5 blocks. No problems whatsoever. I don't have a multi-card rig, but I don't see how that should be any different, other than maybe a bit of clutter in the log output while changing DAGs.

Unfortunately DAGs are created so fast that the custom pcie bus we are running all these GPUs on is getting overloaded and the OpenCL calls hang. I guess I got lucky and it started the first time but quickly crashed.

The only way to solve this issue is to implement the same serialization fix claymour did on his miner (i.e. generate DAGs one by one serially, and any OpenCL calls have to have a delay in them (especially when new work is pushed to all the GPUs). Unfortunately I don't think thats an easy fix with ethminer and how threaded it is.

FYI this wont effect most users running less than 6 GPUs
1787  Alternate cryptocurrencies / Mining (Altcoins) / Re: ethminer-0.9.41-genoil-1.1 on: May 24, 2016, 06:50:22 PM
1.1 pre-release is out:

https://github.com/Genoil/cpp-ethereum/tree/110/

- no more DAG files (both CUDA/OpenCL)
- CUDA Compute 2.0 support is back

It looks like it's all working but I'm releasing early so you can help me test. Don't forget to remove your -E and -R params, that is all gone now.

CPU util seems down, RAM usage down of course. CPU validation is still in there, using the light cache.

no devfee, but do send me some ETH if you like it  Grin

awesome job! If this proves to be stable wont need claymour's miner to run my 9-10 GPU rigs Wink will definitely send some eth your way!

Code:
ℹ  14:46:38|stratum  Received new job #f89025a1
  ℹ  14:46:38|gpuminer0  set work to: #f89025a1, target  #0000000112e0be82
  ℹ  14:46:38|gpuminer1  set work to: #f89025a1, target  #0000000112e0be82
  ℹ  14:46:38|gpuminer2  set work to: #f89025a1, target  #0000000112e0be82
  ℹ  14:46:38|gpuminer3  set work to: #f89025a1, target  #0000000112e0be82
  ℹ  14:46:38|gpuminer4  set work to: #f89025a1, target  #0000000112e0be82
  ℹ  14:46:38|gpuminer5  set work to: #f89025a1, target  #0000000112e0be82
  ℹ  14:46:38|gpuminer6  set work to: #f89025a1, target  #0000000112e0be82
  ℹ  14:46:38|gpuminer7  set work to: #f89025a1, target  #0000000112e0be82
  ℹ  14:46:38|gpuminer8  set work to: #f89025a1, target  #0000000112e0be82
  m  14:46:39|ethminer  Mining on PoWhash #f89025a1 : 221.06MH/s [A25+0:R0+0:F0]
  m  14:46:41|ethminer  Mining on PoWhash #f89025a1 : 189.79MH/s [A25+0:R0+0:F0]
  m  14:46:43|ethminer  Mining on PoWhash #f89025a1 : 189.79MH/s [A25+0:R0+0:F0]
  m  14:46:45|ethminer  Mining on PoWhash #f89025a1 : 189.79MH/s [A25+0:R0+0:F0]
1788  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's Dual Ethereum+Decred GPU Miner v4.3 (Windows/Linux) on: May 20, 2016, 06:45:24 PM
So probability is not the only thing that matters.

Sorry, but your wrong. Probability is all that matters, and regardless what you think or see in the short term does not matter, so your point is not valid. Regardless of whether your solo or pool mining, the def fee wont change hard math. Over time, If you solo mine 100 blocks, 1 block will be missed due to the dev fee on average. If your on the pool your hashrate will be shown 1% less on average.
1789  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's Dual Ethereum+Decred GPU Miner v4.3 (Windows/Linux) on: May 19, 2016, 08:56:12 PM
Also someone that know curl explain why
telnet localhost 3333
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
{"id":0,"jsonrpc":"2.0","method":"miner_getstat1"}

works to get a response, but

curl -i -X POST --data '{"id":0,"jsonrpc":"2.0","method":"miner_getstat1"}' http://localhost:3333

does not work? Im not that great with curl so not sure if I formatted that request right.

My guess is that CDM doesn't like the HTTP headers that curl sends. I'd recommend using nc (https://en.wikipedia.org/wiki/Netcat) instead.

Nice, this works:

echo '{"id":0,"jsonrpc":"2.0","method":"miner_getstat1"}' | nc localhost 3333

this dumps the raw json output so it can easily be used in a bash script in linux to do fun things Smiley
1790  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's Dual Ethereum+Decred GPU Miner v4.3 (Windows/Linux) on: May 19, 2016, 08:16:19 PM
Claymore can you format your json output with key value pairs? Current output is very hard to parse and get individual values.

{"id": 0, "result": ["4.3", "8", "93479;11;0", "18352;18914;18191;18809;19210", "0;0;0", "0;0;0;0;0", "67;53;66;50;66;48;56;61;60;56", "us1.ethpool.org:3333"], "error": null}

something like result.eth_mh would be great to get just the hashrate value for example.


Also someone that know curl explain why
telnet localhost 3333
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
{"id":0,"jsonrpc":"2.0","method":"miner_getstat1"}

works to get a response, but

curl -i -X POST --data '{"id":0,"jsonrpc":"2.0","method":"miner_getstat1"}' http://localhost:3333

does not work? Im not that great with curl so not sure if I formatted that request right.
1791  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] FutureBit MoonLander: A Modern and Efficient Scrypt USB Stick Miner! on: May 18, 2016, 03:04:23 AM
Apparently my drivers are so popular that dropbox banned the download links due to too much traffic lol Huh

Anyway here is alternative download https://mega.nz/#F!NxgyWJhD!5Hhc5ikRYEVQHyeovQa-QQ
1792  Alternate cryptocurrencies / Mining (Altcoins) / Re: Alchemist updated support added for RPI with a broke controler on: May 18, 2016, 02:18:11 AM
Thanks for the plug toptek!

FYI Some CP210X dongles come with the RTS or DTR pins. I ended up writing support for both those pins in the driver, so you can buy either dongle and it will work if you connect pin 6 on the hash board to either of those. And yes my old guide is wrong on the pinouts, pin #5 is the GND pin not 4.
1793  Alternate cryptocurrencies / Mining (Altcoins) / Re: Mined a block - Reward 9.4363533 Ether on: May 15, 2016, 07:18:19 PM
Anyone care to enlighten me on how that was possible?

https://etherchain.org/block/1517516

Screen cap from my ethpool wallet address/polo cold storage

http://prntscr.com/b4d8ly

Looks like you got really lucky and mined a block and uncle at the same time
1794  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] FutureBit MoonLander: A Modern and Efficient Scrypt USB Stick Miner! on: May 10, 2016, 08:21:43 PM
Hi guys,
Awesome job jstefanop. Is this still available for purchase?

Im sold out of the last batch...my resellers Asicpuppy and holybitcoin  (bitshopper.de if your in europe) might still have a few left.
Are you working on new chip units or is that still an issue with getting the chips at a correct price?

Chip is no longer produced and its a bit outdate now. Im developing a new miner based on the A4 chip that will probably be ready in a month or two.
1795  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] FutureBit MoonLander: A Modern and Efficient Scrypt USB Stick Miner! on: May 06, 2016, 08:20:38 PM
Hi guys,
Awesome job jstefanop. Is this still available for purchase?

Im sold out of the last batch...my resellers Asicpuppy and holybitcoin  (bitshopper.de if your in europe) might still have a few left.
1796  Bitcoin / Hardware / Re: Bitfury: "16nm... sales to public start shortly" on: May 06, 2016, 08:11:00 PM
So May and nothing?? Do these companies even care about saving any little shred of their reputation that is left? Anyway seems like they are having some big problems with their 16nm chip and are now trying to distance themselves from being just a "mining company" with their recent announcements.
1797  Alternate cryptocurrencies / Mining (Altcoins) / Re: ASIC USB Miner for altcoins? on: May 04, 2016, 06:14:05 PM
Link for my Scrypt USB stick is in my sig...it does up to 1MH/s
1798  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] FutureBit MoonLander: A Modern and Efficient Scrypt USB Stick Miner! on: May 02, 2016, 06:39:32 PM
it seems 2 of my sticks are holding me back.
i can run 6 of them at 320 @ .9v with only 1 or 2 hwe per hour and they are spot on the rated speed.. 320x2.77= 886.4
if i add the other 2 they produce about 10 or so hwe per minute and they only run around 500kh/s


lowering those 2 to around 256 make them happy.

there doesnt seem to be a way to set those 2 at 256 while the others are at 320 on the same hub. Sad


Check out the FAQ, instructions are there and about every other question people keep asking over and over Tongue
1799  Bitcoin / Bitcoin Discussion / Re: Satoshi is revealed and nobody here cares about this?? on: May 02, 2016, 05:55:12 PM
Out of curiosity, where are these 1 million bitcoins everyone is scared about. Is there really an address with 1 mill bitcoins, or there were a million bitcoins mined by satoshi in the early days that are unaccounted for? (and if thats the case why are people so concerned since they were probably sold and redistributed a long time ago?).

1800  Bitcoin / Mining / Re: Remember the old days? 16 MHs Litecoin 24 GHs Bitcoin Mining Farm ASIC vs GPU Te on: April 26, 2016, 05:00:34 PM
You want to talk about good old times? I wonder how many others remember using a cpu Bitcoin miner

They are all millionaires and chilling on some remote island they bought with satoshi, and laughing at us...at least the guys that didn't buy pizza with their early bitcoins Wink
Pages: « 1 ... 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 99 100 101 102 103 104 105 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!