Andartis
Jr. Member
Offline
Activity: 306
Merit: 7
|
|
July 24, 2018, 06:47:32 PM |
|
... I'm ready to listen u , if have any solution <3
Thanks
Power off completely? Check cables and PSU. Factory reset? Apply firmware again. Disconnect hashboards (power and connection cable), try to boot controler only. If nothing helps, ask inno support. Concerning return times after warranty, my D9 hashboard is 3 weeks on its way now, still did not arrive. At the chinese customs at the moment. I sent it with DHL.
|
|
|
|
minefarmbuy
Full Member
Offline
Activity: 1022
Merit: 221
We are not retail.
|
|
July 24, 2018, 07:27:46 PM |
|
... I'm ready to listen u , if have any solution <3
Thanks
Power off completely? Check cables and PSU. Factory reset? Apply firmware again. Disconnect hashboards (power and connection cable), try to boot controler only. If nothing helps, ask inno support. Concerning return times after warranty, my D9 hashboard is 3 weeks on its way now, still did not arrive. At the chinese customs at the moment. I sent it with DHL. Talk with your shipping service before sending these out. Since it's for repair you should be able to avoid importing delays while they sort out if you should pay customs or not.
|
|
|
|
minefarmbuy
Full Member
Offline
Activity: 1022
Merit: 221
We are not retail.
|
|
July 24, 2018, 07:41:50 PM |
|
Hello my friends, I have some problems I have 3 A9 Zmaster and since today 1 of them stop working. He can't mine anymore. He search everytime... I have reboot... Re-install firmware, check connection, reinstall equipment.. I'm ready to listen u , if have any solution <3 Thanks Got to do all the basics, to rule out every thing. Start with power and adequacy. Then work your way though each board separately and cables. Try other boards with other controllers, etc. Rule out everything you can. Since you have more than one unit you can troubleshoot more. You don't even have to open them up just connect the the 18pin to the other controller, you can use a 4pin to usb adapters to power the fans on secondary unit.
|
|
|
|
basilp
Jr. Member
Offline
Activity: 36
Merit: 8
|
|
July 25, 2018, 01:40:56 AM |
|
FYI, I'm on a D9, but most of the software interface is the same. Last night I found the "stats" cgminer api to obtain the details of each chip (e.g., nVol, Temp, PLL). I think the values that come back are not in the units that we'd like (e.g., temp = 505; maybe correlates to 67C), but I think it would be worthwhile if someone did this for the A9 and measured the values in each of the different modes. I plan on doing this (maybe tonight) on the D9. Hopefully there's something that correlates so that we can figure out if altering the .conf file is having any remaining effects.
can you please explain how you accessed the "stats" cgminer api? The cgminer API is available through the use of JSON RPCs. Early on, I created a python script that I made to monitor my ASICs before I knew about AwesomeMiner. I used sources like this ( https://gist.github.com/WyseNynja/1500780) as a starting point and expanded from there. Premium versions of AwesomeMiner may be able to do the same thing with sending these commands. If you do a search for "cgminer json rpc python", lots of different projects come up that you can use to hack together a solution. I got this to work https://github.com/tsileo/pycgminerIn [1]: from pycgminer import CgminerAPI In [2]: cgminer = CgminerAPI(host='xx.xx.xx.xx', port=4028) In [3]: cgminer.summary() Out[3]: {u'STATUS': [{u'Code': 11, u'Description': u'sgminer 4.4.2', u'Msg': u'Summary', u'STATUS': u'S', u'When': 1532482199}], u'SUMMARY': [{u'Accepted': 184, u'Best Share': 15.84, u'Device Hardware%': 1584.0, u'Device Rejected%': 1584.0, u'Difficulty Accepted': 15.84, u'Difficulty Rejected': 15.84, u'Difficulty Stale': 15.84, u'Discarded': 506, u'Elapsed': 390, u'Found Blocks': 0, u'Get Failures': 0, u'Getworks': 17, u'Hardware Errors': 0, u'Last getwork': 1532482198, u'Local Work': 2323, u'MHS 15m': 17261.57, u'MHS 1m': 44043.96, u'MHS 5m': 34571.3, u'MHS 5s': 65758.97, u'MHS av': 49897.53, u'Network Blocks': 4, u'Pool Rejected%': 1584.0, u'Pool Stale%': 1584.0, u'Rejected': 0, u'Remote Failures': 0, u'Stale': 0, u'Total MH': 19472058.0, u'Utility': 28.29, u'Work Utility': 1563069.9}], u'id': 1} In [7]: cgminer.devs() Out[7]: {u'DEVS': [{u'ASC': 0, u'Accepted': 87, u'Device Elapsed': 533, u'Device Hardware%': 0.0, u'Device Rejected%': 0.0, u'Difficulty Accepted': 9744225.0, u'Difficulty Rejected': 0.0, u'Enabled': u'Y', u'Hardware Errors': 0, u'ID': 0, u'Last Share Difficulty': 131070.0, u'Last Share Pool': 0, u'Last Share Time': 1532482339, u'Last Valid Work': 1532482339, u'MHS 15m': 8069.8, u'MHS 1m': 19662.56, u'MHS 5m': 14868.44, u'MHS 5s': 28061.91, u'MHS av': 18295.33, u'Name': u'HLT', u'Rejected': 0, u'Status': u'Alive', u'Temperature': 53.0, u'Total MH': 9744225.0, u'Utility': 9.8}, can't see anywhere where mentions clockspeeds... tried cgminer.devs() cgminer.devdetails()
|
|
|
|
sweeperAA
Jr. Member
Offline
Activity: 55
Merit: 5
|
|
July 25, 2018, 02:20:27 AM |
|
FYI, I'm on a D9, but most of the software interface is the same. Last night I found the "stats" cgminer api to obtain the details of each chip (e.g., nVol, Temp, PLL). I think the values that come back are not in the units that we'd like (e.g., temp = 505; maybe correlates to 67C), but I think it would be worthwhile if someone did this for the A9 and measured the values in each of the different modes. I plan on doing this (maybe tonight) on the D9. Hopefully there's something that correlates so that we can figure out if altering the .conf file is having any remaining effects.
can you please explain how you accessed the "stats" cgminer api? The cgminer API is available through the use of JSON RPCs. Early on, I created a python script that I made to monitor my ASICs before I knew about AwesomeMiner. I used sources like this ( https://gist.github.com/WyseNynja/1500780) as a starting point and expanded from there. Premium versions of AwesomeMiner may be able to do the same thing with sending these commands. If you do a search for "cgminer json rpc python", lots of different projects come up that you can use to hack together a solution. I got this to work https://github.com/tsileo/pycgminerIn [1]: from pycgminer import CgminerAPI In [2]: cgminer = CgminerAPI(host='xx.xx.xx.xx', port=4028) In [3]: cgminer.summary() Out[3]: {u'STATUS': [{u'Code': 11, u'Description': u'sgminer 4.4.2', u'Msg': u'Summary', u'STATUS': u'S', u'When': 1532482199}], u'SUMMARY': [{u'Accepted': 184, u'Best Share': 15.84, u'Device Hardware%': 1584.0, u'Device Rejected%': 1584.0, u'Difficulty Accepted': 15.84, u'Difficulty Rejected': 15.84, u'Difficulty Stale': 15.84, u'Discarded': 506, u'Elapsed': 390, u'Found Blocks': 0, u'Get Failures': 0, u'Getworks': 17, u'Hardware Errors': 0, u'Last getwork': 1532482198, u'Local Work': 2323, u'MHS 15m': 17261.57, u'MHS 1m': 44043.96, u'MHS 5m': 34571.3, u'MHS 5s': 65758.97, u'MHS av': 49897.53, u'Network Blocks': 4, u'Pool Rejected%': 1584.0, u'Pool Stale%': 1584.0, u'Rejected': 0, u'Remote Failures': 0, u'Stale': 0, u'Total MH': 19472058.0, u'Utility': 28.29, u'Work Utility': 1563069.9}], u'id': 1} In [7]: cgminer.devs() Out[7]: {u'DEVS': [{u'ASC': 0, u'Accepted': 87, u'Device Elapsed': 533, u'Device Hardware%': 0.0, u'Device Rejected%': 0.0, u'Difficulty Accepted': 9744225.0, u'Difficulty Rejected': 0.0, u'Enabled': u'Y', u'Hardware Errors': 0, u'ID': 0, u'Last Share Difficulty': 131070.0, u'Last Share Pool': 0, u'Last Share Time': 1532482339, u'Last Valid Work': 1532482339, u'MHS 15m': 8069.8, u'MHS 1m': 19662.56, u'MHS 5m': 14868.44, u'MHS 5s': 28061.91, u'MHS av': 18295.33, u'Name': u'HLT', u'Rejected': 0, u'Status': u'Alive', u'Temperature': 53.0, u'Total MH': 9744225.0, u'Utility': 9.8}, can't see anywhere where mentions clockspeeds... tried cgminer.devs() cgminer.devdetails() If you haven't already, do cgminer.stats()
|
|
|
|
basilp
Jr. Member
Offline
Activity: 36
Merit: 8
|
|
July 25, 2018, 02:28:34 AM |
|
aah nice.
So I've set this a9 to
"T1performance": true, "T1Pll1": "1300", "T1Pll2": "1300", "T1Pll3": "1300", "T1VID1": "170", "T1VID1": "170", "T1VID1": "170", "A1Fanspd": "20", "A1Fanmode": "0"
...
u'09 pllOptimal': False, u'10 Cooldown': 0, u'10 Fail count': 0, u'10 Fail reset': 0, u'10 HW errors': 3, u'10 Nonce ranges': 0, u'10 Nonces found': 36, u'10 PLL': 354, u'10 Stales': 0, u'10 Temp': 524, u'10 nVol': 862, u'10 pllOptimal': False, u'11 Cooldown': 0, u'11 Fail count': 0, u'11 Fail reset': 0, u'11 HW errors': 4, u'11 Nonce ranges': 0, u'11 Nonces found': 33, u'11 PLL': 354, u'11 Stales': 0, u'11 Temp': 526, u'11 nVol': 872, u'11 pllOptimal': False, u'Calls': 0, u'Chain ID': 2, u'Chain num': 2, u'Chain skew': 0, u'Disabled': False, u'Elapsed': 3468, u'Enabled chips': u'fff', u'Fan duty': 20, u'ID': u'HLT2', u'MHS av': 16500.0, u'Max': 0.0, u'Min': 99999999.0, u'Num active chips': 12, u'Num chips': 12, u'Num cores': 381, u'PLL': 354, u'STATS': 2, u'Temp': 54.0, u'Temp max': 58.0, u'Temp min': 51.0, u'VidOptimal': True, u'Voltage Avg': 860.0, u'Voltage Max': 872.0, u'Voltage Min': 850.0, u'VoltageBalanced': False, u'Wait': 0.0, u'iVid': 166, u'pllOptimal': True},
|
|
|
|
TrueCryptoMiner
Newbie
Offline
Activity: 9
Merit: 0
|
|
July 25, 2018, 03:04:01 AM |
|
aah nice.
So I've set this a9 to
"T1performance": true, "T1Pll1": "1300", "T1Pll2": "1300", "T1Pll3": "1300", "T1VID1": "170", "T1VID1": "170", "T1VID1": "170", "A1Fanspd": "20", "A1Fanmode": "0"
...
u'09 pllOptimal': False, u'10 Cooldown': 0, u'10 Fail count': 0, u'10 Fail reset': 0, u'10 HW errors': 3, u'10 Nonce ranges': 0, u'10 Nonces found': 36, u'10 PLL': 354, u'10 Stales': 0, u'10 Temp': 524, u'10 nVol': 862, u'10 pllOptimal': False, u'11 Cooldown': 0, u'11 Fail count': 0, u'11 Fail reset': 0, u'11 HW errors': 4, u'11 Nonce ranges': 0, u'11 Nonces found': 33, u'11 PLL': 354, u'11 Stales': 0, u'11 Temp': 526, u'11 nVol': 872, u'11 pllOptimal': False, u'Calls': 0, u'Chain ID': 2, u'Chain num': 2, u'Chain skew': 0, u'Disabled': False, u'Elapsed': 3468, u'Enabled chips': u'fff', u'Fan duty': 20, u'ID': u'HLT2', u'MHS av': 16500.0, u'Max': 0.0, u'Min': 99999999.0, u'Num active chips': 12, u'Num chips': 12, u'Num cores': 381, u'PLL': 354, u'STATS': 2, u'Temp': 54.0, u'Temp max': 58.0, u'Temp min': 51.0, u'VidOptimal': True, u'Voltage Avg': 860.0, u'Voltage Max': 872.0, u'Voltage Min': 850.0, u'VoltageBalanced': False, u'Wait': 0.0, u'iVid': 166, u'pllOptimal': True},
Any luck on better performance?
|
|
|
|
sweeperAA
Jr. Member
Offline
Activity: 55
Merit: 5
|
|
July 25, 2018, 03:07:08 AM |
|
For the D9, I'm the process of obtaining the .stats output for each of the different tuned profiles (e.g., efficiency, balanced, factory, performance). Looks like I'm only going to get to a couple tonight as it's in the "tuning" process. I hope to have a map of all the values and try to correlate, at least, the PLL values in the next couple of days.
|
|
|
|
wKiV7378U
Newbie
Offline
Activity: 62
Merit: 0
|
|
July 25, 2018, 04:20:16 AM |
|
u'09 pllOptimal': False, u'10 PLL': 354, u'10 pllOptimal': False, u'11 PLL': 354, u'11 pllOptimal': False, u'pllOptimal': True},
hmmmmmmmmmm...weirdness...not sure how to translate these numbers and why it says falsefalsefalse, but then true....
u'VoltageBalanced': False, u'Voltage Avg': 860.0, u'Voltage Max': 872.0, u'Voltage Min': 850.0,
this is in volts... 0.872V is your max core voltage. like i posted before, the asic datasheet spec says optimal core voltage is 0.90V +/-10% so this can be bumped higher for the people who want to play mad scientist.
u'VoltageBalanced': False,
i think this indicates your 3 asic cards are running at different core voltages, so some tuning of the VID for each chain will be necessary.
try changing T1PLL to 1325 and see what the u'PLL #'s come back as. Also, try bumping T1VID up to 175 to see where your core voltage sits.
if there is more to the printout can you please post the entire thing next time?
BTW you have a typo in your config, "T1VID1": "170", "T1VID1": "170", "T1VID1": "170", you are setting the same variable 3 times
|
|
|
|
wKiV7378U
Newbie
Offline
Activity: 62
Merit: 0
|
|
July 25, 2018, 06:44:10 AM |
|
A day of hashing zencash back at the autotuned performance mode shows more stable performance on my miner. No dips below 40ksol, whereas when I set the PLL clock higher before, I would dip in the 30s. Sometimes I see spikes into the higher 60s... The poster Hawkfish a few pages back has a much more stable A9 than I do...unless it has something to do with the pool I am mining on? Right now the only mod Im using is fan speedup, I think any overclock will need to optimize VID with PLL based on what I can see. https://i.imgur.com/cbF3gQq.png
|
|
|
|
basilp
Jr. Member
Offline
Activity: 36
Merit: 8
|
|
July 25, 2018, 07:29:57 AM |
|
u'09 pllOptimal': False, u'10 PLL': 354, u'10 pllOptimal': False, u'11 PLL': 354, u'11 pllOptimal': False, u'pllOptimal': True},
hmmmmmmmmmm...weirdness...not sure how to translate these numbers and why it says falsefalsefalse, but then true....
u'VoltageBalanced': False, u'Voltage Avg': 860.0, u'Voltage Max': 872.0, u'Voltage Min': 850.0,
this is in volts... 0.872V is your max core voltage. like i posted before, the asic datasheet spec says optimal core voltage is 0.90V +/-10% so this can be bumped higher for the people who want to play mad scientist.
u'VoltageBalanced': False,
i think this indicates your 3 asic cards are running at different core voltages, so some tuning of the VID for each chain will be necessary.
try changing T1PLL to 1325 and see what the u'PLL #'s come back as. Also, try bumping T1VID up to 175 to see where your core voltage sits.
if there is more to the printout can you please post the entire thing next time?
BTW you have a typo in your config, "T1VID1": "170", "T1VID1": "170", "T1VID1": "170", you are setting the same variable 3 times
oh you're right. thanks, kind of invalidates test I was doing. I noticed that if I have "T1performance": true, then the clock speeds I set don't seem to stick. Looking at the scrolled logs they seem to revert to 1250.
|
|
|
|
Solsichu
Jr. Member
Offline
Activity: 37
Merit: 5
|
|
July 25, 2018, 12:31:00 PM |
|
Took apart a bad (50%) Hash board. I was hoping for something obvious to stand out. Nothing did. The boards where quite nice. Solder looked nice. Heatsinks are screwed down and easy to work work. Thermal grease on the backside and Thubber, Thermal Rubber, on the tops. Replaced thubber with Arctic Silver, may have dropped 1C, hash rate wasn't noticeably better.
I'll post photos in 12 hours. Probably will troubleshooting a bit in a few days when I'm free. Check th voltage to hashing Chips's, bypass some chips and see what happenes. Hopefully borrow a flir IR Camera and have a look. Any experience floating around that could send some ideas my way?
|
BTC: 1BZDgWfFLZ5ZSvhWB7UtUwgF5cp89mrCVv ETH: 0xC15453FfCDF0A8313a6B7C6ab4f7c9D6e1e2A307
|
|
|
bitliteethdashneo
Newbie
Offline
Activity: 20
Merit: 0
|
|
July 25, 2018, 01:09:03 PM |
|
Does anyone have pricelist of manufacturer for Innosilicon A9 ZMaster. My miner is holed up in airport for about 2 weeks now. The DHL looks like its in collusion with customs and is finding out pricelist of manufacturer, sending trace to origin and whatnots. Regarding pricelist - its a method to determine cost of equipment when its not manufactured in imported country and rest methods fails. - search for method 5 in the below link. https://www.wto.org/english/Tratop_e/cusval_e/cusval_info_e.htm
|
|
|
|
Andartis
Jr. Member
Offline
Activity: 306
Merit: 7
|
|
July 25, 2018, 07:27:26 PM |
|
Took apart a bad (50%) Hash board.[...] Thermal grease on the backside and Thubber, Thermal Rubber, on the tops. Replaced thubber with Arctic Silver, may have dropped 1C, hash rate wasn't noticeably better.[...]
Using regular thermal paste in ASICs is generally not a good idea. Because of the 24/7 workload and the high temperatures, it tends to dry out quite fast and loose good contact. You will need to replace the paste quite often. The pads also dry out at some point but still have good contact.
|
|
|
|
wKiV7378U
Newbie
Offline
Activity: 62
Merit: 0
|
|
July 25, 2018, 07:35:51 PM |
|
Took apart a bad (50%) Hash board. I was hoping for something obvious to stand out. Nothing did. The boards where quite nice. Solder looked nice. Heatsinks are screwed down and easy to work work. Thermal grease on the backside and Thubber, Thermal Rubber, on the tops. Replaced thubber with Arctic Silver, may have dropped 1C, hash rate wasn't noticeably better.
I'll post photos in 12 hours. Probably will troubleshooting a bit in a few days when I'm free. Check th voltage to hashing Chips's, bypass some chips and see what happenes. Hopefully borrow a flir IR Camera and have a look. Any experience floating around that could send some ideas my way?
can you post a picture of the asic card? ive been wondering if off-the-shelf water cooling thermal blocks might fit on the chips also i dont see any correlation between asic temperature and hash rate speed. before modding my fan, my asic cards sat at 70C and still hash with the same efficiency sitting at 50C.
|
|
|
|
Solsichu
Jr. Member
Offline
Activity: 37
Merit: 5
|
|
July 25, 2018, 08:14:12 PM |
|
Took apart a bad (50%) Hash board.[...] Thermal grease on the backside and Thubber, Thermal Rubber, on the tops. Replaced thubber with Arctic Silver, may have dropped 1C, hash rate wasn't noticeably better.[...]
Using regular thermal paste in ASICs is generally not a good idea. Because of the 24/7 workload and the high temperatures, it tends to dry out quite fast and loose good contact. You will need to replace the paste quite often. The pads also dry out at some point but still have good contact. Pretty certain I'll make the entire life of the Miner without changing it. I wouldn't call 48C that high. In retrospect, It wasn't worth the effort Todo though, as it didnt make a big difference and things will be messy if I decide to pull off the chips later. Just wanted to be sure I wasn't dealing with one hot Chip destabilising the chain. WkiV: pics are coming in 4-5 hours.
|
BTC: 1BZDgWfFLZ5ZSvhWB7UtUwgF5cp89mrCVv ETH: 0xC15453FfCDF0A8313a6B7C6ab4f7c9D6e1e2A307
|
|
|
Solsichu
Jr. Member
Offline
Activity: 37
Merit: 5
|
|
July 26, 2018, 01:15:44 AM |
|
|
BTC: 1BZDgWfFLZ5ZSvhWB7UtUwgF5cp89mrCVv ETH: 0xC15453FfCDF0A8313a6B7C6ab4f7c9D6e1e2A307
|
|
|
Andartis
Jr. Member
Offline
Activity: 306
Merit: 7
|
|
July 26, 2018, 01:55:01 AM |
|
Thanks for the photos. That must have been pretty much Arctic Silver to repaste that thing
|
|
|
|
minefarmbuy
Full Member
Offline
Activity: 1022
Merit: 221
We are not retail.
|
|
July 26, 2018, 05:18:21 AM |
|
Does anyone have pricelist of manufacturer for Innosilicon A9 ZMaster. My miner is holed up in airport for about 2 weeks now. The DHL looks like its in collusion with customs and is finding out pricelist of manufacturer, sending trace to origin and whatnots. Regarding pricelist - its a method to determine cost of equipment when its not manufactured in imported country and rest methods fails. - search for method 5 in the below link. https://www.wto.org/english/Tratop_e/cusval_e/cusval_info_e.htmYour receipt isn't good enough? What country are you in?
|
|
|
|
basilp
Jr. Member
Offline
Activity: 36
Merit: 8
|
|
July 26, 2018, 05:21:20 AM |
|
thanks nice to see inside.
|
|
|
|
|