Bitcoin Forum
May 17, 2024, 03:14:38 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 ... 135 »
1501  Bitcoin / Hardware / Re: ANN: custom BFL firmware - tested 5-7GH pool meas. improvement on 60GH singles on: October 15, 2013, 06:20:01 AM
yes you need AVR dragon to flash.

yes I will update thread, at this point Im out of ideas to get further actual performance from, other than by seeing if theres additional values that can be used to adjust the clock generator upwards.
1502  Bitcoin / Hardware / Re: ANN: custom BFL firmware - tested 5-7GH pool meas. improvement on 60GH singles on: October 15, 2013, 04:55:13 AM
Still working on tweaking things. I did set that !define to define w/ no adverse affect. Its weird, the comment right above it even reinforced that its supposed to be !define... I wonder why, maybe its just redundant or something, I cant find anything else in the code that does it elsewhere.

donation addy:  12jjayHWtUci3ygPXD4i2yUHMySytiUBd4

The latest tweak or test is turning on running heavy diagnostics w/ the 3 nonce test... Doing this disabled only a few more of my engines but not nearly as much as stock. I really believe that running the diags at a lower clock yield more accurate results  as to what engines are pretty much useless at any clock vs others that work fine otherwise... just have more potential for error as clocks raise.

So, my latest build yields 400-700mh/s less avg rate, but dropped my HW by about 50%
1503  Bitcoin / Hardware / ANN: custom BFL firmware - tested 5-7GH pool meas. improvement on 60GH singles on: October 13, 2013, 04:54:56 PM
Hey guys.....
First of all this is highly experimental code...as such if you blow up ur shit, not my fault. Ive provided both source and elf in the link below.

Ive been slaving away for the last 3 days at wrapping my head around, and tweaking BFL firmware.
Ive done some major changes that basically, reliably seem to get most peoples singles(60GH) an additional 5-7GH/s pool measureable.
My single stock was 58.4GH ... now its 64.8GH ... nearly all engines are enabled and happily hashing away.
Here is the source and the elf is also prebuilt in the debug folder.

http://www.fileswap.com/dl/oPZeK2NqSm/

Some changes, off the top of my head, a lot of my changes are in ASIC_engine.c
Ive created 4 user specifiable variables at the top - they are commented
1. specifies the frequency to boot the chips at
2. specifies the frequency to perform diagnostics on chips
3. specifies the frequency chips operate at during actual runtime
4. specifies the error threshold for the rewritten diagnostics routine I written against the engine processor(I still dont know if the processor is a seperate part of each engine or what, but the coding makes it sound like it)

These are specified using the index values (not frequency)

I only run the "processor diags" on each engine, I run them 20x(40 tests) on my single and I have set the threshold to 0 .. so if any error at all that engine gets disabled. Otherwise engine is left on. ( run no other diagnostics on single) ... on my particular single this leaves only 1 engine disabled(stock I had several engines turned off).  So, its a very relaxed testing scheme as you can see, but I believe it provides enough to allow cgminer to measure speed incorrectly & HW error as well... whereas leaving all engines on.... well the engines that cant even return a response to cgminer dont even get flagged as HW Error... and create fake hashrate readouts.

Its my theory that the multi level chip clock frequency initialization Ive created...actually helps the engines come on line more reliably. Whereas BFL's method of booting up chips at full boar clockspeed ... actually can hinder more engines. Also, the way Ive written the processor diag for each engine...is a more relaxed method of testing, think of it as "benefit of the doubt"..

Future things to tweak:
1: mhz readout accuracy. - the way mhz is measured on these devices is kinda just guesswork. The firmware sends a job to engine, figures out how long it takes then calculates resultant mhz and assigns that as mhz for entire chip. I may write it so it does several samples of that job then averages reported time taken and use that as mhz...

2: ...theres a function called __ENGINE_AUTHORITIVE_ACTIVITY_SUPERVISION ... and looking at how it gets called and what its designed to do... I think it actually doesnt end ever getting properly executed. I see that there is an if statement in file HighLevel_Operations.c ... which looks like it should be inside a loop...cuz it incriments a value each time and if equals 200 then it executes the if statement... Problem is... I dont see where the loop is!?!?.... So, I think that if statement never gets executed and its designed to be runtime engine error handling.    ....BFL....
If anyone could look at this and see...that would be great!
1504  Bitcoin / Hardware / Re: Experimenting with Jalapeno firmware... on: October 13, 2013, 04:51:25 PM
Hey guys.....
Ive been slaving away for the last 3 days at wrapping my head around, and tweaking BFL firmware.
Ive done some major changes that basically, reliably seem to get most peoples singles(60GH) an additional 5-7GH/s pool measureable.
My single stock was 58.4GH ... now its 64.8GH ... nearly all engines are enabled and happily hashing away.
Here is the source and the elf is also prebuilt in the debug folder.

http://www.fileswap.com/dl/oPZeK2NqSm/

Some changes, off the top of my head, a lot of my changes are in ASIC_engine.c
Ive created 4 user specifiable variables at the top - they are commented
1. specifies the frequency to boot the chips at
2. specifies the frequency to perform diagnostics on chips
3. specifies the frequency chips operate at during actual runtime
4. specifies the error threshold for the rewritten diagnostics routine I written against the engine processor(I still dont know if the processor is a seperate part of each engine or what, but the coding makes it sound like it)

These are specified using the index values (not frequency)

I only run the "processor diags" on each engine, I run them 40x on my single and I have set the threshold to 0 .. so if any error at all that engine gets disabled. Otherwise engine is left on. ( run no other diagnostics on single) ... on my particular single this leaves only 1 engine disabled(stock I had several engines turned off).  So, its a very relaxed testing scheme as you can see, but I believe it provides enough to allow cgminer to measure speed incorrectly & HW error as well... whereas leaving all engines on.... well the engines that cant even return a response to cgminer dont even get flagged as HW Error... and create fake hashrate readouts.

Its my theory that the multi level chip clock frequency initialization Ive created...actually helps the engines come on line more reliably. Whereas BFL's method of booting up chips at full boar clockspeed ... actually can hinder more engines. Also, the way Ive written the processor diag for each engine...is a more relaxed method of testing, think of it as "benefit of the doubt"..

Future things to tweak:
1: mhz readout accuracy. - the way mhz is measured on these devices is kinda just guesswork. The firmware sends a job to engine, figures out how long it takes then calculates resultant mhz and assigns that as mhz for entire chip. I may write it so it does several samples of that job then averages reported time taken and use that as mhz...

2: ...theres a function called __ENGINE_AUTHORITIVE_ACTIVITY_SUPERVISION ... and looking at how it gets called and what its designed to do... I think it actually doesnt end ever getting properly executed. I see that there is an if statement in file HighLevel_Operations.c ... which looks like it should be inside a loop...cuz it incriments a value each time and if equals 200 then it executes the if statement... Problem is... I dont see where the loop is!?!?.... So, I think that if statement never gets executed and its designed to be runtime engine error handling.    ....BFL....
If anyone could look at this and see...that would be great!
1505  Economy / Computer hardware / Re: (WTS) 2x BFL 60 GH/s, based in US on: October 13, 2013, 06:45:41 AM
1 @ 6.5btc
1506  Economy / Computer hardware / Re: [WTS] 4 x 60 GH/s Butterfly Labs ASIC Miner (S. California) on: October 12, 2013, 12:58:31 AM
Ill offer 6.5btc for 1  =)
1507  Economy / Computer hardware / Re: WTS: Various GPU's & mining components... on: October 09, 2013, 03:59:09 PM
bumpity, remember submit any price! =)
1508  Bitcoin / Group buys / Re: [OPEN] - GROUP BUY of BITFURY Chips + DRILLBIT SYSTEM mining assembly on: October 09, 2013, 07:07:26 AM
when is b2 ready to ship? Its a shame prices went up... at $425 & current BTC price...these things will never ROI =/

Working on a price drop. Seeing what we can do. Stay tuned


Cool, at a decent price, I would get in B2 for sure... depending on timeframe of B2 actually shipping. =)
1509  Bitcoin / Group buys / Re: [OPEN] - GROUP BUY of BITFURY Chips + DRILLBIT SYSTEM mining assembly on: October 09, 2013, 07:00:56 AM
when is b2 ready to ship? Its a shame prices went up... at $425 & current BTC price...these things will never ROI =/
1510  Economy / Computer hardware / Re: [WTS] 4 x 60 GH/s Butterfly Labs ASIC Miner (S. California) on: October 09, 2013, 05:27:10 AM
So, Ill start offers at an actual reasonable price. 15BTC for 2, overnight to Portland, OR, escrow, insured.
1511  Economy / Computer hardware / Re: [WTS] BFL Single SCs - 12 BTC each on: October 08, 2013, 06:47:44 AM
Ill offer 6.5btc each, shipped overnight, insured, escrow. Im in Portland OR
1512  Economy / Computer hardware / Re: Selling 30 GH Butterfly Labs x2 units on: October 08, 2013, 05:16:40 AM
12 bitcoins for 60 gigahash

I don't understand why bitfury kits are fucking selling on this board for 9 bitcoins per 30 gigahash when I can't even unload 60 gigahash worth of equipment...?

Is butterflylabs inferior?

Please note that the bitfury kit just has a raspberry pi on top, why would it sell higher?

This is why you cant: http://mining.thegenesisblock.com/a/1190ba0d00
1513  Economy / Computer hardware / Re: Selling 30 GH Butterfly Labs x2 units on: October 08, 2013, 02:38:53 AM
if 30 gh of bitfury starter kit is 9 btc each then it should be the same

where are you getting 7btc from?

How much I can expect to mine from it =)
1514  Economy / Computer hardware / Re: Selling 30 GH Butterfly Labs x2 units on: October 08, 2013, 01:48:48 AM
um.... 12... right


Ill offer 14, overnight shipping insured, escrow

for both

I obviously retract my offer... for some reason I misread the OP, I swear I thought it said 2x 60GH =P

60GH itself is alone only worth around 7btc atm...
So, yeah I would have to readjust my offer to 7tc, including shipping overnight + escrow. All fees paid.
1515  Economy / Computer hardware / Re: Selling 30 GH Butterfly Labs x2 units on: October 07, 2013, 08:29:40 PM
um.... 12... right


Ill offer 14, overnight shipping insured, escrow

for both
1516  Economy / Computer hardware / Re: Taking BTC offers on Avalon B2, 3 module on: October 07, 2013, 02:50:03 PM
hey remember me from ozcoin irc haha, so you decided to put the avy up for sell huh , trying to get singles afterwards?

well shoot me a price maybe i could go for one more avy before getting some singles myself hard to find a good price for those right now though Sad



I do dude =) whats up ... hehe! yeah, I would like singles instead of the avy so I can easily add to my space heater setup indoors.
1517  Economy / Computer hardware / Re: WTS: Various GPU's & mining components... on: October 07, 2013, 02:48:56 PM
wondering what RAM is still available?

This is the RAM:
2x 1gb ocz 1333
1x 4GB corsair 1600 c9
1x 4GB supertalent 1333

oops, saw you only ship to CONUSA, I am too north for that Sad

Well, RAM I may be willin to ship elsewhere since so small, I dont know. Never really done international shipping before... what ya interested in?
1518  Economy / Computer hardware / Re: [WTS] 30GH Chili Mrteal BFL boards on: October 07, 2013, 02:47:52 PM
I have 8 of the Chili boards on order with MrTeal (see https://bitcointalk.org/index.php?topic=304250.0 for details).  Looking for 40BTC for the lot, or 6BTC for one sold individually.  These are due to ship on 10/11, next-day air to me.  I'll ship them to you USPS priority mail for free, or you can pay actual Fedex shipping.  US only please.

These completed boards or we still gotta supply chips? Thanks

Complete boards, you supply the cooling and power.  Looks like 4 of them are taken now. 

Whats their hashrate?
1519  Economy / Computer hardware / Re: Taking BTC offers on Avalon B2, 3 module on: October 07, 2013, 02:47:02 PM
Where you located ?

Pacific Northwest region - US =)
1520  Economy / Computer hardware / Taking BTC offers on Avalon B2, 3 module on: October 07, 2013, 05:50:19 AM
I would like BTC, post or PM offers
Shipping can be negotiated and only to CON-US

Escrow optional =)

Ive purchased 2x 240CFM fans for it(externally powered through molex), they are currently installed and keep it extremely cool. The avalon sustains 85+ GH @ 35c or less. Clock speeds at these temps between 360-366
But due to environmental variables beyond my control, this unit will be sold guaranteeing its stock rated hashrate.

I still have the original fans as well and can be reinstalled if desired.
Pages: « 1 ... 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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 ... 135 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!