Pages:
Author

Topic: [ANN] Bitfury ASIC sales in EU and Europe - page 67. (Read 250482 times)

hero member
Activity: 493
Merit: 500
Hooray for non-equilibrium thermodynamics!
September 06, 2013, 02:23:43 PM
What would be awesome is if someone whipped up a script that can collect larger samples of data by picking up each individual 5 min log and compiling them in to a longer one with averages. I'd personally prefer a one that shows info on every single chip.

Hi Isokivi, I'd be happy to give this a go over the weekend (we do a reasonable amount of parsing of text files in bash, so it should be straightforward). However, we don't have any bitfury hardware yet (October can't come round soon enough Cheesy), so would need some sample log files and some info on the file locations etc. Let me know if you're interested - somebody else may have done it already of course and may be able to share more quickly.
The file we want is /run/smh/.stat.log

This is what they look like: http://pastebin.com/xN7t9WaH

Please note that: pastebin screws up the line lenght, all the info regarding a single chip is actually on one line.
And secondly, this is a sample of that has two h-boards, the maximum is sixteen.

Let me know if theres something else I can help with.
[edit] btw since theres propably no nice way to time the data collection exactly when the new logs are generated (or perhaps there is, Im out of familiar waters here) I would suggest that you have the script pick up data every 330 seconds (5min 30 sec).

Hi Isokivi, could you give this a try to see if it's broadly what you're after (at least until a more elegant solution is coded into chainminer)? It's not pretty, but I think that it should work. It's just set up to grab board stats at the moment, but can be modified to grab chip-level stats if required in a later version. There may be bugs when trying to grab data from the real system, so it may need tweaking. I've set the sleep time to 120 seconds, as 330 seconds would miss some data after some time I think (unless I'm miscalculating - It's late Wink).

Code:
#!/bin/bash
# Bitfury chainminer logfile consolidation script
# Jlsminingcorp, September 2013
# Version 1.0

logfile="/run/shm/.stat.log"
output="./boards.log"
datestamp=$(ls --full-time "$logfile" | awk '{print $6}')
timestamp=$(ls --full-time "$logfile" | awk '{print $7}' | awk -F"." '{print $1}')

# If log file or output file don't exist then take appropriate action
if [ ! -e "$logfile" ]; then
    echo "$datestamp","$timestamp""Logfile does not exist in the specified location" >> "$output"
    exit 1
fi

if [ ! -e "$output" ]; then
    echo "Date,Time,Board Position,Speed,Noncerate [GH/s],Hashrate [GH/s],Good,Errors,SPI-Errors,Miso-Errors" > "$output"
fi

# If timestamp in the log file is the same as the timestamp on the last entry in the output file then sleep for a while
prevtimestamp=$(tail -n 1 "$output" | awk -F"," '{print $2}')
while [ "$timestamp" == "$prevtimestamp" ]; do
    sleep 120
    timestamp=$(ls --full-time "$logfile" | awk '{print $7}' | awk -F"." '{print $1}')
done

# When there's new data in the log file strip this out and copy to the output file
IFS=$'\r\n' datalines=($(grep '.: ' "$logfile"))
count=0
while [ $count -lt ${#datalines[@]} ]; do
    data=$(echo "${datalines["$count"]}")
    eddata=($(echo $data | tr ":" " "))
    data_array=($(echo $eddata | tr " " "\n"))
    echo -ne "$datestamp","$timestamp" >> "$output"

    for i in "${data_array[@]}"; do
        echo -ne ,"$i" >> "$output"
    done

    echo "" >> "$output"
    let count=count+1
done

exit 0

member
Activity: 94
Merit: 10
September 06, 2013, 01:59:42 PM
looks like I had bad luck with h-board 1, should I try to change it to bank 2 or turn off autotuning for chip 8-16 and set them to 50?

you should swap 0 and 4. And check for tight and even seating of the h-boards.


getting even worse if I change the h-boards.. I checked for soldering errors on the m-board - but nothing to see. Next I'm gonna try to populate bank 2 and 3..

First off I'd turn autotune off on the chips that are down aIfDSo ..and if any of the push more than 50% errors after that, lower their clock 54->53->52.

Changing the h-boards between slots 0, 4 and 8 did not make any difference, I'm trying to switch off autotune and lower every chip to 52 now. But so far I've only got 8 from 32 chips with less than 50% errors, will try to get it to 25GH/s stable for the night.

Code:
1       AIfDSo  54      1.246   1.448   87      128     0       1       137     [0:0]   682     5 5 5 5 6 4 5 5 4 6 6 6 7 7 6 5         0 0 0 0 3 3 9 8 8 6 13 19 22 12 25 0
2       AIfDSo  54      0.086   1.469   6       87      0       0       139     [0:1]   750     0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0         6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6
3       AIfDSo  54      1.432   1.480   100     33      0       0       140     [0:2]   664     6 6 6 6 6 6 6 6 6 6 7 7 6 7 7 6         0 0 0 0 0 0 0 0 0 0 0 3 8 11 11 0
4       AIfDSo  54      0.301   1.363   21      9       0       0       129     [0:3]   736     1 1 1 1 1 1 1 1 2 2 2 2 1 2 1 1         0 0 0 0 0 0 0 0 2 1 1 0 0 2 3 0
5       AIfDSo  54      1.074   1.490   75      462     0       0       141     [0:4]   684     4 4 6 6 5 6 4 4 4 4 4 5 6 5 4 4         1 1 4 11 15 28 40 46 48 56 53 45 46 40 27 1
6       AIfDSo  54      1.718   1.522   120     55      0       6       144     [0:5]   646     7 8 7 7 8 8 8 8 7 8 7 7 9 7 7 7         1 0 0 0 0 4 5 5 1 6 8 6 6 7 5 1
7       AIfDSo  54      0.687   1.406   48      267     1       20      133     [0:6]   711     2 2 3 3 4 3 4 3 4 2 3 4 3 4 2 2         0 0 1 0 3 15 23 20 17 12 31 31 33 41 39 1
8       AIfDSo  54      0.558   1.279   39      17      0       17      121     [0:7]   719     2 2 2 3 3 2 2 2 3 3 3 3 2 3 2 2         2 1 1 2 1 1 1 2 1 1 0 0 1 0 1 2
9       AIfDSo  54      0.000   1.068   0       1715    1       32      101     [0:8]   756     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         3 246 245 244 0 244 242 1 1 1 1 1 1 1 242 242
10      AIfDSo  54      0.215   0.507   15      114     0       54      48      [0:9]   744     0 1 1 1 0 1 0 0 1 2 3 1 0 2 2 0         3 5 4 3 3 3 1 7 4 20 10 14 15 0 21 1
11      AIfDSo  54      0.029   0.571   2       193     3       65      54      [0:A]   755     0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0         1 2 0 1 0 6 12 17 20 18 22 22 26 24 22 0
12      AIfDSo  54      0.129   0.201   9       69      0       26      19      [0:B]   750     0 0 0 0 0 2 1 1 0 0 1 1 1 0 2 0         5 4 2 3 2 2 5 7 5 3 0 6 8 8 7 2
13      AIfDSo  54      0.086   0.190   6       98      1       20      18      [0:C]   752     0 0 0 0 0 0 0 1 0 1 1 0 1 1 1 0         3 3 2 2 2 2 2 6 5 12 9 13 11 14 12 0
14      AIfDSo  54      0.129   0.454   9       44      3       2       43      [0:D]   747     1 1 0 1 0 1 0 0 1 1 0 1 0 0 1 1         2 4 1 0 0 1 0 2 3 6 6 7 6 4 2 0
15      AIfDSo  54      0.200   0.486   14      95      5       1       46      [0:E]   743     0 1 0 1 2 2 1 2 1 2 1 0 0 0 1 0         2 3 3 3 2 2 3 3 7 11 15 8 9 12 8 4
16      AIfDSo  54      0.086   0.402   6       31      3       4       38      [0:F]   750     0 0 0 0 0 0 1 1 1 0 1 1 0 0 0 1         3 0 2 1 0 0 4 1 3 2 1 3 2 4 3 2
17      AIfDSo  54      1.417   1.459   99      123     0       0       138     [4:0]   669     6 5 5 5 5 6 6 7 7 7 7 7 6 6 8 6         0 0 0 0 0 6 4 7 11 12 18 16 17 13 19 0
18      AIfDSo  54      1.460   1.522   102     388     0       0       144     [4:1]   656     6 6 6 7 7 7 6 7 7 7 7 6 5 6 6 6         0 0 6 8 10 16 29 31 36 41 43 46 40 42 40 0
19      AIfDSo  54      1.360   1.427   95      43      0       0       135     [4:2]   667     6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6         0 0 0 0 0 0 2 3 5 5 6 6 7 6 3 0
20      AIfDSo  54      1.718   1.490   120     260     0       0       141     [4:3]   667     7 7 7 7 7 7 7 6 8 8 8 9 9 7 10 6        1 3 11 11 11 11 13 19 21 22 33 37 16 34 17 0
21      AIfDSo  54      1.360   1.480   95      68      0       0       140     [4:4]   669     6 6 6 6 5 5 6 6 6 6 6 5 6 7 7 6         0 0 0 0 0 0 0 1 2 5 9 12 16 12 11 0
22      AIfDSo  54      1.618   1.437   113     250     0       0       136     [4:5]   661     6 7 7 7 7 8 8 7 7 8 7 6 7 8 7 6         0 0 8 19 14 14 25 31 25 12 14 23 19 20 26 0
23      AIfDSo  54      1.346   1.416   94      81      0       0       134     [4:6]   679     5 5 5 5 6 6 6 6 6 7 6 5 6 8 7 5         0 0 0 0 0 2 9 9 2 4 8 14 13 5 15 0
24      AIfDSo  54      1.317   1.459   92      40      0       0       138     [4:7]   673     6 6 6 5 5 5 5 5 5 6 6 5 6 7 8 6         0 0 0 0 0 0 0 0 0 1 3 11 10 4 11 0
25      AIfDSo  54      1.575   1.490   110     162     0       0       141     [4:8]   656     7 6 6 7 7 6 6 7 7 7 7 7 8 8 7 7         0 0 0 0 5 6 5 20 20 18 20 24 8 8 28 0
26      AIfDSo  54      1.661   1.469   116     88      0       0       139     [4:9]   662     7 7 7 7 7 6 7 7 8 8 7 8 8 8 8 6         4 5 2 2 3 0 4 4 8 10 9 5 9 11 12 0
27      AIfDSo  54      0.344   1.406   24      194     0       0       133     [4:A]   734     2 4 1 2 0 1 2 1 0 2 1 3 4 0 1 0         6 4 7 5 7 7 7 11 13 12 18 18 20 26 25 8
28      AIfDSo  54      1.489   1.480   104     115     0       0       140     [4:B]   666     6 6 7 5 6 6 7 7 6 7 7 7 7 6 8 6         0 0 2 5 4 3 8 10 8 9 15 13 10 13 15 0
29      AIfDSo  54      1.346   1.480   94      175     0       0       140     [4:C]   671     5 5 5 6 6 5 5 6 6 5 7 8 8 6 6 5         0 0 0 1 7 10 14 7 8 18 20 19 20 22 29 0
30      AIfDSo  54      1.546   1.490   108     126     0       0       141     [4:D]   661     6 7 7 7 7 7 6 6 7 6 7 7 8 7 7 6         0 1 3 6 8 11 10 9 9 10 10 13 11 12 13 0
31      AIfDSo  54      1.260   1.395   88      56      0       0       132     [4:E]   677     5 5 5 6 5 6 5 6 5 5 6 6 6 6 6 5         0 0 0 3 7 4 4 2 2 2 2 6 8 9 7 0
32      AIfDSo  54      1.288   1.543   90      222     0       0       146     [4:F]   677     5 5 5 5 6 6 6 6 7 7 7 5 4 5 6 5         0 0 0 0 1 8 10 9 23 25 14 21 39 41 31 0
speed:1728 noncerate[GH/s]:30.079 (0.940/chip) hashrate[GH/s]:38.780 good:2101 errors:5808 spi-errors:17 miso-errors:248 jobs:373 (record[GH/s]:0.000)
0:      864     7.974   15.337  557     3417    17      248
4:      864     22.105  23.443  1544    2391    0       0
hero member
Activity: 910
Merit: 1000
Items flashing here available at btctrinkets.com
September 06, 2013, 01:15:19 PM
legendary
Activity: 974
Merit: 1000
September 06, 2013, 01:15:11 PM
put 4 in 8 and 0 in 4. Check seating. Let them run 10 Minutes.
member
Activity: 94
Merit: 10
September 06, 2013, 01:13:05 PM
looks like I had bad luck with h-board 1, should I try to change it to bank 2 or turn off autotuning for chip 8-16 and set them to 50?

you should swap 0 and 4. And check for tight and even seating of the h-boards.


getting even worse if I change the h-boards.. I checked for soldering errors on the m-board - but nothing to see. Next I'm gonna try to populate bank 2 and 3..

Code:
1       AIfDSo  54      0.000   0.000   0       176     0       0       0       [0:0]   728     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         11 11 11 11 11 12 11 10 11 11 11 11 11 11 11 11         speed->0
2       AIfDSo  54      0.000   0.000   0       0       0       0       0       [0:1]   704     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed->0
3       AIfDSo  54      0.000   0.000   0       0       0       0       0       [0:2]   729     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed->0
4       AIfDSo  54      0.000   0.000   0       0       0       0       0       [0:3]   688     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed->0
5       AIfDSo  54      0.000   0.000   0       0       0       2       0       [0:4]   697     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed->0
6       AIfDSo  54      0.000   0.750   0       0       0       20      71      [0:5]   690     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed->0
7       AIfDSo  54      0.000   0.159   0       0       0       10      15      [0:6]   727     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed->0
8       AIfDSo  54      0.000   0.000   0       0       0       5       0       [0:7]   744     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed->0
9       AIfDSo  54      0.000   0.719   0       0       0       6       68      [0:8]   739     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed->0
10      AIfDSo  54      0.000   0.000   0       0       0       11      0       [0:9]   731     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed->0
11      AIfDSo  54      0.000   0.000   0       0       0       16      0       [0:A]   756     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed->0
12      AIfDSo  54      0.000   0.000   0       0       0       5       0       [0:B]   748     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed->0
13      AIfDSo  54      0.000   0.000   0       1       0       11      0       [0:C]   748     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0         speed->0
14      AIfDSo  54      0.000   0.011   0       1       0       13      1       [0:D]   745     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0         speed->0
15      AIfDSo  54      0.000   0.264   0       16      0       13      25      [0:E]   752     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         2 3 1 1 1 1 0 1 0 0 1 0 2 1 1 1         speed->0
16      AIfDSo  54      0.186   0.275   13      18      1       7       26      [0:F]   712     1 1 1 0 0 0 0 1 1 1 2 1 1 1 1 1         1 2 1 2 1 2 0 0 0 0 1 1 2 1 2 2         speed->0
17      AIfDSo  54      1.589   1.469   111     0       0       0       139     [4:0]   569     7 7 7 7 7 7 7 6 7 7 7 7 7 7 7 7         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed up
18      AIfDSo  54      1.360   1.490   95      1       0       0       141     [4:1]   594     6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6         0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
19      AIfDSo  54      1.403   1.501   98      0       0       0       142     [4:2]   586     7 7 6 6 6 6 6 6 6 6 6 6 6 6 6 6         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
20      AIfDSo  54      1.646   1.385   115     0       0       0       131     [4:3]   568     7 7 7 7 8 8 8 7 7 7 7 7 7 7 7 7         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed up
21      AIfDSo  54      0.329   0.317   23      1       0       0       30      [4:4]   666     2 2 2 2 2 2 2 2 1 1 1 1 1 1 0 1         0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
22      AIfDSo  54      1.546   1.564   108     0       0       0       148     [4:5]   569     7 7 7 7 7 7 7 7 7 7 7 6 6 6 6 7         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
23      AIfDSo  54      1.847   1.522   129     0       0       0       144     [4:6]   554     8 9 8 8 8 8 8 8 8 8 8 8 8 8 8 8         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed up
24      AIfDSo  54      1.561   1.511   109     0       0       0       143     [4:7]   560     7 7 7 7 7 7 7 7 7 7 7 7 7 6 6 6         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed up
25      AIfDSo  54      0.000   1.427   0       2238    0       2       135     [4:8]   756     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 319 319 320 0 320 320 0 0 0 0 0 0 0 320 320   speed->0
26      AIfDSo  54      1.274   1.437   89      1       0       6       136     [4:9]   600     6 5 6 6 6 6 6 6 6 5 5 5 4 5 6 6         0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
27      AIfDSo  54      0.000   1.448   0       2527    0       6       137     [4:A]   756     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 316 316 316 0 316 316 315 316 316 0         speed->0
28      AIfDSo  54      1.288   1.268   90      3       0       0       120     [4:B]   616     4 5 5 5 6 5 5 6 7 7 6 6 6 6 6 5         0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1
29      AIfDSo  54      0.100   0.264   7       0       0       2       25      [4:C]   734     0 0 1 0 0 0 0 0 0 0 1 1 1 1 1 1         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
30      AIfDSo  54      0.000   0.317   0       11      0       0       30      [4:D]   741     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1         speed->0
31      AIfDSo  54      1.561   1.543   109     3       0       8       146     [4:E]   587     6 6 6 8 8 8 7 5 7 7 7 7 7 7 7 6         1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1
32      AIfDSo  54      0.000   0.011   0       0       0       16      1       [4:F]   750     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed->0
speed:1728 noncerate[GH/s]:15.691 (0.490/chip) hashrate[GH/s]:20.653 good:1096 errors:4997 spi-errors:1 miso-errors:159 jobs:375 (record[GH/s]:0.000)
0:      864     0.186   2.177   13      212     1       119
4:      864     15.505  18.476  1083    4785    0       40
hero member
Activity: 910
Merit: 1000
Items flashing here available at btctrinkets.com
September 06, 2013, 01:11:43 PM
I keep trying to shutdown my rPi and it seems to follow that process but soon it always ends in the login screen again and as a side note, without shutting down. Probably it's not caused by it but in  the shutdown sequence I happen to see something like 'miner' not found or something like that.

Any reason for these issues? I use 'shutdown now.'
try: shutdown -h now
sr. member
Activity: 408
Merit: 250
September 06, 2013, 01:09:01 PM
I keep trying to shutdown my rPi and it seems to follow that process but soon it always ends in the login screen again and as a side note, without shutting down. Probably it's not caused by it but in  the shutdown sequence I happen to see something like 'miner' not found or something like that.

Any reason for these issues? I use 'shutdown now.'
hero member
Activity: 910
Merit: 1000
Items flashing here available at btctrinkets.com
September 06, 2013, 01:07:20 PM
Shouldn't i have got PCI-E  cable with my starter kit?

if not what cable do i need the only ones i have about now is the spare ones you get with psu
No.
Dosent your psu have 6 or 6+2 pin pci-e connectors ?

yeah but don't i need a cable to run from the m board to the psu
You plug in two 6-pin pci-e connectors to the M-board.
newbie
Activity: 59
Merit: 0
September 06, 2013, 01:06:17 PM
Shouldn't i have got PCI-E  cable with my starter kit?

if not what cable do i need the only ones i have about now is the spare ones you get with psu
No.
Dosent your psu have 6 or 6+2 pin pci-e connectors ?

i haven't a clue which ones i need to use its my first time Sad
hero member
Activity: 910
Merit: 1000
Items flashing here available at btctrinkets.com
September 06, 2013, 01:04:20 PM
Shouldn't i have got PCI-E  cable with my starter kit?

if not what cable do i need the only ones i have about now is the spare ones you get with psu
No.
Dosent your psu have 6 or 6+2 pin pci-e connectors ?
newbie
Activity: 59
Merit: 0
September 06, 2013, 01:03:11 PM
Shouldn't i have got PCI-E  cable with my starter kit?

if not what cable do i need the only ones i have about now is the spare ones you get with psu
hero member
Activity: 560
Merit: 500
September 06, 2013, 12:51:42 PM
Regarding picture with "chip installed wrong way". The chips follow M-shaped path. You can determine the chip number in the U4x -text next to the chip. U40…U4F
legendary
Activity: 1513
Merit: 1040
September 06, 2013, 12:41:17 PM
Out of the box I get the best results at B1+C1, about 43 GH/s. On A1+B1 a lot of chips are just off (on h-board in B1 only).
Will try some tuning tomorrow.
legendary
Activity: 974
Merit: 1000
September 06, 2013, 12:32:38 PM
that's appeasing  Cheesy
hero member
Activity: 574
Merit: 501
September 06, 2013, 12:30:03 PM
Just FYI, that's the very first thing I noticed about the picture.  Was just about to post a similar comment before it struck me....
legendary
Activity: 974
Merit: 1000
September 06, 2013, 12:28:59 PM
touché!  Cheesy I should stop posting after the 2nd beer.
hero member
Activity: 574
Merit: 501
September 06, 2013, 12:26:40 PM
looks like I had bad luck with h-board 1, should I try to change it to bank 2 or turn off autotuning for chip 8-16 and set them to 50?

you should swap 0 and 4. And check for tight and even seating of the h-boards.

In danis picture, I see one chip turned over by 180 degrees.

Note where the White pin-1 indicator dot and the U number label is for those middle chips....
hero member
Activity: 910
Merit: 1000
Items flashing here available at btctrinkets.com
September 06, 2013, 12:24:36 PM


This is from the card that performs the worst. 5 Chips have problems. There are more "soldering curcuits" or whatever they are called, they appear on different spots.. any chance one could fix this? I mean a professional, but without too much work (not reironing)?
Could one simply cut the pins free from each other?  I don't want to damage anything, I'd rather stick with it as is, but I'm curious..
None of those are on the sides that matter.
[edit] but the chip that is the other way around is something I dont know about.
[edit2] I seem to have plenty of chips the other way around too and I only have one underperforming one in 32.
legendary
Activity: 974
Merit: 1000
September 06, 2013, 12:23:29 PM
looks like I had bad luck with h-board 1, should I try to change it to bank 2 or turn off autotuning for chip 8-16 and set them to 50?

you should swap 0 and 4. And check for tight and even seating of the h-boards.

In danis picture, I see one chip turned over by 180 degrees.
member
Activity: 94
Merit: 10
September 06, 2013, 12:02:33 PM
looks like I had bad luck with h-board 1, should I try to change it to bank 2 or turn off autotuning for chip 8-16 and set them to 50?

Code:
1       AIfDSo  55      1.360   1.480   95      1       0       0       140     [0:0]   502     6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6         0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2       AIfDSo  54      0.845   0.729   59      0       0       0       69      [0:1]   547     3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed up
3       AIfDSo  54      1.360   1.501   95      0       0       0       142     [0:2]   516     6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
4       AIfDSo  54      1.603   1.395   112     0       0       0       132     [0:3]   513     7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         speed up
5       AIfDSo  54      0.301   0.317   21      0       0       0       30      [0:4]   597     2 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
6       AIfDSo  54      1.460   1.543   102     1       0       4       146     [0:5]   522     7 7 7 7 7 7 7 7 6 6 6 5 4 6 6 7         0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
7       AIfDSo  53      1.246   1.332   87      1       0       16      126     [0:6]   529     5 6 6 5 5 5 5 5 6 6 6 5 5 6 5 6         0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
8       AIfDSo  0       0.000   0.000   0       1       0       17      0       [0:7]   676     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0         turn off
9       AIfDSo  0       0.000   1.089   0       1752    0       37      103     [0:8]   756     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 251 251 250 0 250 250 0 0 0 0 0 0 0 250 250   shut down
10      AIfDSo  0       0.000   0.497   0       7       0       55      47      [0:9]   748     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         1 0 0 0 1 0 0 0 1 0 0 1 1 1 1 0         turn off
11      AIfDSo  0       0.000   0.814   0       4       2       27      77      [0:A]   756     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1         turn off
12      AIfDSo  0       0.000   0.053   0       3       0       15      5       [0:B]   754     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0         turn off
13      AIfDSo  0       0.000   0.053   0       3       1       19      5       [0:C]   755     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0         turn off
14      AIfDSo  0       0.000   0.233   0       12      0       2       22      [0:D]   745     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         0 0 0 1 0 1 1 2 1 2 0 1 1 1 1 0
15      AIfDSo  0       0.000   0.602   0       25      0       4       57      [0:E]   753     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         1 0 3 2 1 1 2 2 1 2 2 2 1 3 0 2
16      AIfDSo  0       0.000   0.634   0       54      0       0       60      [0:F]   746     0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0         1 3 4 1 2 4 3 4 4 4 5 2 5 5 5 2
17      AIfDSo  54      1.246   1.480   87      0       0       0       140     [4:0]   534     5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
18      AIfDSo  54      1.403   1.543   98      0       0       0       146     [4:1]   516     6 6 6 6 6 6 6 6 7 7 6 6 6 6 6 6         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
19      AIfDSo  54      1.603   1.448   112     1       0       0       137     [4:2]   497     7 7 7 7 7 7 7 7 7 7 7 7 7 7 6 8         0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
20      AIfDSo  54      1.389   1.511   97      0       0       0       143     [4:3]   505     6 6 6 6 6 6 6 6 6 7 6 6 6 6 6 6         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
21      AIfDSo  55      1.260   1.490   88      2       1       2       141     [4:4]   524     6 6 6 6 6 5 5 5 6 5 5 5 5 6 6 5         0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1
22      AIfDSo  54      1.432   1.448   100     0       0       2       137     [4:5]   510     6 6 6 6 6 7 7 7 7 6 7 6 6 6 6 5         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
23      AIfDSo  54      1.274   1.406   89      1       0       2       133     [4:6]   527     6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
24      AIfDSo  54      1.518   1.448   106     4       0       2       137     [4:7]   516     7 6 6 6 7 7 7 7 7 6 6 7 7 7 7 6         0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0
25      AIfDSo  55      1.374   1.459   96      5       0       4       138     [4:8]   516     6 5 5 6 7 7 7 7 6 6 7 5 5 5 6 6         0 0 1 0 0 0 0 0 1 1 0 0 1 1 0 0
26      AIfDSo  54      1.360   1.448   95      1       0       0       137     [4:9]   505     7 7 6 6 6 6 5 6 6 5 4 5 6 6 7 7         0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
27      AIfDSo  0       0.143   1.363   10      83      0       3       129     [4:A]   712     0 1 1 0 0 1 0 0 1 0 1 1 0 1 2 1         5 5 5 6 6 5 6 6 5 6 5 5 6 5 3 4
28      AIfDSo  54      1.203   1.437   84      3       0       0       136     [4:B]   533     5 6 5 4 6 6 5 5 5 5 6 5 4 5 6 6         0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0
29      AIfDSo  55      1.432   1.427   100     1       0       0       135     [4:C]   487     7 7 7 7 7 6 6 7 6 5 6 6 5 6 6 6         0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
30      AIfDSo  54      1.446   1.437   101     2       1       2       136     [4:D]   523     7 7 7 6 7 7 7 7 6 5 4 6 5 7 7 6         0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0
31      AIfDSo  55      0.200   0.296   14      0       0       2       28      [4:E]   663     1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0         0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
32      AIfDSo  55      1.489   1.490   104     1       0       2       141     [4:F]   500     7 7 7 6 6 6 5 6 7 7 7 7 7 7 6 6         0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
speed:1193 noncerate[GH/s]:27.946 (0.873/chip) hashrate[GH/s]:34.404 good:1952 errors:1968 spi-errors:5 miso-errors:217 jobs:375 (record[GH/s]:30.122)
0:      378     8.175   12.271  571     1864    3       196
4:      815     19.771  22.133  1381    104     2       21
Pages:
Jump to: