Skip to content

Commit 4fb5fd5

Browse files
committed
[Test/Py/CodeClean] reduce code complexity
Code clean, reduce complexity. - use itertool to remove multi loops - separate code blocks Signed-off-by: Jaeyun <jy1210.jung@samsung.com>
1 parent e72a193 commit 4fb5fd5

File tree

18 files changed

+147
-194
lines changed

18 files changed

+147
-194
lines changed

tests/gen24bBMP.py

-12
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,6 @@
1616
import sys
1717

1818

19-
##
20-
# @brief Convert given data to bytes
21-
# @param[in] data The data to be converted to bytes array
22-
# @return bytes converted from the data
23-
#
24-
def convert_to_bytes(data):
25-
if isinstance(data, bytes):
26-
return data
27-
else:
28-
return pack("<B", data)
29-
30-
3119
##
3220
# @brief Save bitmap "data" to "filename"
3321
# @param[in] filename The filename to be saves as a .bmp file.

tests/nnstreamer_converter/generateGoldenTestResult.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import os
1616

1717
sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__))))
18+
from test_utils import convert_to_bytes
1819
import gen24bBMP as bmp
1920

2021
# Allow to create specific cases only if proper argument is given
@@ -144,21 +145,21 @@
144145
s = b''
145146
for y in range(0, 100):
146147
for x in range(0, 100):
147-
s += bmp.convert_to_bytes(buf[y * 100 + x])
148+
s += convert_to_bytes(buf[y * 100 + x])
148149
bmp.write('testcase_1_0.golden', s)
149150

150151
s = b''
151152
for i in range(1, 3):
152153
for y in range(0, 100):
153154
for x in range(0, 100):
154-
s += bmp.convert_to_bytes(buf[y * 100 + x + i * 100 * 100])
155+
s += convert_to_bytes(buf[y * 100 + x + i * 100 * 100])
155156
bmp.write('testcase_1_1.golden', s)
156157

157158
for i in range(0, 3):
158159
s = b''
159160
for y in range(0, 100):
160161
for x in range(0, 100):
161-
s += bmp.convert_to_bytes(buf[y * 100 + x + i * 100 * 100])
162+
s += convert_to_bytes(buf[y * 100 + x + i * 100 * 100])
162163
bmp.write('testcase_2_' + str(i) + '.golden', s)
163164

164165
string = bmp.gen_BMP_stream('testsequence', 'testcase_stream.golden', 1)
@@ -167,23 +168,23 @@
167168
for i in range(0, 10):
168169
for y in range(0, 16):
169170
for x in range(0, 16):
170-
s += bmp.convert_to_bytes(string[i][y * 16 + x])
171+
s += convert_to_bytes(string[i][y * 16 + x])
171172
bmp.write('testcase_stream_1_0.golden', s)
172173

173174
s = b''
174175
for i in range(0, 10):
175176
for j in range(1, 3):
176177
for y in range(0, 16):
177178
for x in range(0, 16):
178-
s += bmp.convert_to_bytes(string[i][j * 16 * 16 + y * 16 + x])
179+
s += convert_to_bytes(string[i][j * 16 * 16 + y * 16 + x])
179180
bmp.write('testcase_stream_1_1.golden', s)
180181

181182
for j in range(0, 3):
182183
s = b''
183184
for i in range(0, 10):
184185
for y in range(0, 16):
185186
for x in range(0, 16):
186-
s += bmp.convert_to_bytes(string[i][j * 16 * 16 + y * 16 + x])
187+
s += convert_to_bytes(string[i][j * 16 * 16 + y * 16 + x])
187188
bmp.write('testcase_stream_2_' + str(j) + '.golden', s)
188189

189190
if target == -1 or target == 12:

tests/nnstreamer_filter_caffe2/checkLabel.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
import string
1616

1717
sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__))))
18-
from gen24bBMP import convert_to_bytes
19-
from test_utils import read_file
18+
from test_utils import convert_to_bytes, read_file
2019

2120

2221
bytearr = read_file(sys.argv[1])

tests/nnstreamer_filter_custom/checkScaledTensor.py

+5-43
Original file line numberDiff line numberDiff line change
@@ -13,53 +13,15 @@
1313
import sys
1414

1515
sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__))))
16-
from test_utils import read_file
17-
18-
19-
def compare(data1, width1, height1, data2, width2, height2, innerdim):
20-
if (len(data1) * width2 * height2) != (len(data2) * width1 * height1):
21-
print(str(len(data1) * width2 * height2) + ' / ' + str(len(data2) * width1 * height1))
22-
return 1
23-
24-
count = 0
25-
count2 = 0
26-
while count < len(data1):
27-
# Terminated incorrectly
28-
if (count + (innerdim * width1 * height1)) > len(data1):
29-
return 2
30-
if (count2 + (innerdim * width2 * height2)) > len(data2):
31-
return 3
32-
if count2 >= len(data2):
33-
return 4
34-
35-
for y in range(0, height2):
36-
for x in range(0, width2):
37-
for c in range(0, innerdim):
38-
ix = x * width1 // width2
39-
iy = y * height1 // height2
40-
if data1[count + c + ix * innerdim + iy * width1 * innerdim] != \
41-
data2[count2 + c + x * innerdim + y * width2 * innerdim]:
42-
print('At ' + str(x) + ',' + str(y))
43-
return 5
44-
count = count + innerdim * width1 * height1
45-
count2 = count2 + innerdim * width2 * height2
46-
47-
if count > len(data1):
48-
return 6
49-
if count2 > len(data2):
50-
return 7
51-
return 0
16+
from test_utils import read_file, compare_scaled_tensor
5217

5318

5419
if len(sys.argv) != 8:
5520
exit(9)
5621

57-
data1 = read_file(sys.argv[1])
58-
width1 = int(sys.argv[2])
59-
height1 = int(sys.argv[3])
60-
data2 = read_file(sys.argv[4])
61-
width2 = int(sys.argv[5])
62-
height2 = int(sys.argv[6])
22+
# (data, width, height)
23+
data1 = (read_file(sys.argv[1]), int(sys.argv[2]), int(sys.argv[3]))
24+
data2 = (read_file(sys.argv[4]), int(sys.argv[5]), int(sys.argv[6]))
6325
innerdim = int(sys.argv[7])
6426

65-
exit(compare(data1, width1, height1, data2, width2, height2, innerdim))
27+
exit(compare_scaled_tensor(data1, data2, innerdim))

tests/nnstreamer_filter_python3/checkScaledTensor.py

+5-45
Original file line numberDiff line numberDiff line change
@@ -14,55 +14,15 @@
1414
import sys
1515

1616
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
5518

5619

5720
if len(sys.argv) != 8:
5821
exit(9)
5922

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]))
6626
innerdim = int(sys.argv[7])
6727

68-
exit(compare(data1, width1, height1, data2, width2, height2, innerdim))
28+
exit(compare_scaled_tensor(data1, data2, innerdim))

tests/nnstreamer_filter_pytorch/checkLabel.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
import string
1515

1616
sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__))))
17-
from gen24bBMP import convert_to_bytes
18-
from test_utils import read_file
17+
from test_utils import convert_to_bytes, read_file
1918

2019

2120
# Verify that the output of test case verifies the filename of the input

tests/nnstreamer_filter_tensorflow/checkLabel.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
import string
1616

1717
sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__))))
18-
from gen24bBMP import convert_to_bytes
19-
from test_utils import read_file
18+
from test_utils import convert_to_bytes, read_file
2019

2120

2221
bytearr = read_file(sys.argv[1])

tests/nnstreamer_filter_tensorflow2_lite/checkLabel.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
import string
1515

1616
sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__))))
17-
from gen24bBMP import convert_to_bytes
18-
from test_utils import read_file, read_label
17+
from test_utils import convert_to_bytes, read_file, read_label
1918

2019

2120
onehot = read_file(sys.argv[1])

tests/nnstreamer_filter_tensorflow_lite/checkLabel.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
import string
1515

1616
sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__))))
17-
from gen24bBMP import convert_to_bytes
18-
from test_utils import read_file, read_label
17+
from test_utils import convert_to_bytes, read_file, read_label
1918

2019

2120
onehot = read_file(sys.argv[1])

tests/nnstreamer_filter_tensorrt/CheckMnist.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import os
1515

1616
sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__))))
17-
from gen24bBMP import convert_to_bytes
17+
from test_utils import convert_to_bytes
1818

1919

2020
def get_label(fname):

tests/nnstreamer_repo_lstm/generateTestCase.py

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
from __future__ import print_function
1515

16-
import sys
17-
import os
1816
import array as arr
1917
import numpy as np
2018

tests/nnstreamer_repo_rnn/generateTestCase.py

-7
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,7 @@
1616

1717
from __future__ import print_function
1818

19-
import sys
20-
import os
2119
import array as arr
22-
import struct
23-
import string
24-
25-
sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__))))
26-
from gen24bBMP import convert_to_bytes
2720

2821

2922
def location(c, w, h):

tests/test_utils.py

+60
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
import sys
1414
import os
15+
from itertools import product
16+
from struct import pack
1517

1618

1719
##
@@ -28,3 +30,61 @@ def read_label(filename):
2830
with open(filename, 'r') as f:
2931
lines = f.readlines()
3032
return lines
33+
34+
35+
##
36+
# @brief Write the data to file
37+
def write_file(filename, data):
38+
with open(filename, 'wb') as f:
39+
f.write(data)
40+
41+
42+
##
43+
# @brief Convert given data to bytes
44+
# @param[in] data The data to be converted to bytes array
45+
# @return bytes converted from the data
46+
def convert_to_bytes(data):
47+
if isinstance(data, bytes):
48+
return data
49+
return pack("<B", data)
50+
51+
52+
##
53+
# @brief Compare original content and scaled one
54+
def compare_scaled_tensor(d1, d2, innerdim):
55+
# data should be tuple (data, width, height)
56+
data1, width1, height1 = d1
57+
data2, width2, height2 = d2
58+
count1 = count2 = 0
59+
len1 = len(data1)
60+
len2 = len(data2)
61+
62+
if (len1 * width2 * height2) != (len2 * width1 * height1):
63+
print(str(len1 * width2 * height2) + ' / ' + str(len2 * width1 * height1))
64+
return 1
65+
66+
while count1 < len1:
67+
# Terminated incorrectly
68+
if (count1 + (innerdim * width1 * height1)) > len1:
69+
return 2
70+
if (count2 + (innerdim * width2 * height2)) > len2:
71+
return 3
72+
if count2 >= len2:
73+
return 4
74+
75+
for y, x, c in product(range(0, height2), range(0, width2), range(0, innerdim)):
76+
ix = x * width1 // width2
77+
iy = y * height1 // height2
78+
if data1[count1 + c + ix * innerdim + iy * width1 * innerdim] != \
79+
data2[count2 + c + x * innerdim + y * width2 * innerdim]:
80+
print('At ' + str(x) + ',' + str(y))
81+
return 5
82+
83+
count1 = count1 + innerdim * width1 * height1
84+
count2 = count2 + innerdim * width2 * height2
85+
86+
if count1 > len1:
87+
return 6
88+
if count2 > len2:
89+
return 7
90+
return 0

0 commit comments

Comments
 (0)