|
14 | 14 | import sys
|
15 | 15 |
|
16 | 16 | sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__))))
|
17 |
| -from test_utils import read_file |
18 |
| - |
19 |
| - |
20 |
| -## |
21 |
| -# @brief Compare original content and scaled one |
22 |
| -def compare(data1, width1, height1, data2, width2, height2, innerdim): |
23 |
| - if (len(data1) * width2 * height2) != (len(data2) * width1 * height1): |
24 |
| - print(str(len(data1) * width2 * height2) + ' / ' + str(len(data2) * width1 * height1)) |
25 |
| - return 1 |
26 |
| - |
27 |
| - count = 0 |
28 |
| - count2 = 0 |
29 |
| - while count < len(data1): |
30 |
| - # Terminated incorrectly |
31 |
| - if (count + (innerdim * width1 * height1)) > len(data1): |
32 |
| - return 2 |
33 |
| - if (count2 + (innerdim * width2 * height2)) > len(data2): |
34 |
| - return 3 |
35 |
| - if count2 >= len(data2): |
36 |
| - return 4 |
37 |
| - |
38 |
| - for y in range(0, height2): |
39 |
| - for x in range(0, width2): |
40 |
| - for c in range(0, innerdim): |
41 |
| - ix = x * width1 // width2 |
42 |
| - iy = y * height1 // height2 |
43 |
| - if data1[count + c + ix * innerdim + iy * width1 * innerdim] != \ |
44 |
| - data2[count2 + c + x * innerdim + y * width2 * innerdim]: |
45 |
| - print('At ' + str(x) + ',' + str(y)) |
46 |
| - return 5 |
47 |
| - count = count + innerdim * width1 * height1 |
48 |
| - count2 = count2 + innerdim * width2 * height2 |
49 |
| - |
50 |
| - if count > len(data1): |
51 |
| - return 6 |
52 |
| - if count2 > len(data2): |
53 |
| - return 7 |
54 |
| - return 0 |
| 17 | +from test_utils import read_file, compare_scaled_tensor |
55 | 18 |
|
56 | 19 |
|
57 | 20 | if len(sys.argv) != 8:
|
58 | 21 | exit(9)
|
59 | 22 |
|
60 |
| -data1 = read_file(sys.argv[1]) |
61 |
| -width1 = int(sys.argv[2]) |
62 |
| -height1 = int(sys.argv[3]) |
63 |
| -data2 = read_file(sys.argv[4]) |
64 |
| -width2 = int(sys.argv[5]) |
65 |
| -height2 = int(sys.argv[6]) |
| 23 | +# (data, width, height) |
| 24 | +data1 = (read_file(sys.argv[1]), int(sys.argv[2]), int(sys.argv[3])) |
| 25 | +data2 = (read_file(sys.argv[4]), int(sys.argv[5]), int(sys.argv[6])) |
66 | 26 | innerdim = int(sys.argv[7])
|
67 | 27 |
|
68 |
| -exit(compare(data1, width1, height1, data2, width2, height2, innerdim)) |
| 28 | +exit(compare_scaled_tensor(data1, data2, innerdim)) |
0 commit comments