i have the entire Bank 1 at zero hashing (first 4 slots)
i have 3 140mm fans and one large box fan blowing at it.
have v2.2 H boards with v3 M board. doesn't matter which H boards go into those slots.
any suggestions?
Im going through something sort of similar however I found that it was becasue my best.cnf file was not configured properly.
I'm tuning each chip to AIfDSo
Bank 1 Bank 2 Bank 3 Bank 4
1: 35.137GH/s 5: 2.407GH/s 9: 32.583GH/s 13: 34.36GH/s
2: 31.768GH/s 6: 32.583GH/s 10: 0.815GH/s 14: 34.915GH/s
3: 32.175GH/s 7: 7.775GH/s 11: 36.581GH/s 15: 33.471GH/s
4: 34.915GH/s 8: 33.693GH/s 12: 35.804GH/s 16: 30.213GH/s
Bank 1 Bank 2 Bank 3 Bank 4
1: 36.86GH/s 5: 34.456GH/s 9: 10.545GH/s 13: 19.936GH/s
2: 31.699GH/s 6: 18.045GH/s 10: 30.834GH/s 14: 20.129GH/s
3: 30.802GH/s 7: 34.424GH/s 11: 4.167GH/s 15: 18.045GH/s
4: 22.565GH/s 8: 20.417GH/s 12: 5.353GH/s 16: 15.353GH/s
Bank 1 Bank 2 Bank 3 Bank 4
1: 30.68GH/s 5: 9.964GH/s 9: 35.004GH/s 13: 35.276GH/s
2: 32.212GH/s 6: 19.556GH/s 10: 28.576GH/s 14: 20.186GH/s
3: 32.227GH/s 7: 14.574GH/s 11: 23.293GH/s 15: 13.157GH/s
4: 13.085GH/s 8: 21.289GH/s 12: 23.221GH/s 16: 12.541GH/s
This is my result from 3 tests at 5 minutes in on those settings - I saw a chron job 1-line script here that Keefe wrote that is supposed to reset stratum every 10 minutes, I want to try that script but to restart my miner every 5 minutes - seems like I'm getting solid hashrate within that 1st 5 minutes then everything runs - but as you can see from my past tests - my hashrate seems to drop every time after 5 minutes - I have 6 120 mm fans going and heatsinks so I have no idea what gives
Chainminer's autotune function doesn't kick in until 5 or 10 minutes (not sure which) after it starts. Also, the stats in the first 5 minutes aren't reliable. But if you think autotune is the problem, create /opt/bitfury/best.cnf like this and restart chainminer:
1 aIfDSo 53
2 aIfDSo 53
3 aIfDSo 53
...
256 aIfDSo 53
Note: Not sure if it matters, but those are tab chars between the columns, not spaces.
Here's a simple script to easily create such a best.cnf:
rm /opt/bitfury/best.cnf ; for i in {1..256} ; do echo -e "$i\taIfDSo\t53" >> /opt/bitfury/best.cnf ; done