summaryrefslogtreecommitdiff
path: root/scripts/py
diff options
context:
space:
mode:
authoralexander <alexander.efremov@arm.com>2021-07-06 19:47:59 +0100
committerAlexander Efremov <alexander.efremov@arm.com>2021-07-08 17:30:49 +0100
commit80eecfbdaad689c52d5a6d370a322f3d6a6150e4 (patch)
tree3c7d06d1e9e227981fa072fccab5a360a39ad1d7 /scripts/py
parent1da52aeb4468ad97c09e383400bbabc8c3c77227 (diff)
downloadml-embedded-evaluation-kit-80eecfbdaad689c52d5a6d370a322f3d6a6150e4.tar.gz
MLECO-1987: Minor refactoring.
ASRSlidingWindow can be used in other use-cases, thus it was renamed to decouple from ASR. Signed-off-by: alexander <alexander.efremov@arm.com> Change-Id: I2df977e4f18f490a532e0f27e3625b153ca464d7
Diffstat (limited to 'scripts/py')
-rw-r--r--scripts/py/gen_test_data_cpp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/py/gen_test_data_cpp.py b/scripts/py/gen_test_data_cpp.py
index 7cc5f11..ea4bd6f 100644
--- a/scripts/py/gen_test_data_cpp.py
+++ b/scripts/py/gen_test_data_cpp.py
@@ -137,7 +137,7 @@ def main(args):
if ifm_size == -1:
ifm_size = get_npy_vec_size(filename)
elif ifm_size != get_npy_vec_size(filename):
- raise Exeception(f"ifm size changed for index {idx}")
+ raise Exception(f"ifm size changed for index {idx}")
# Save the fm cc file
base_name = "ofm" + str(idx)
@@ -149,7 +149,7 @@ def main(args):
if ofm_size == -1:
ofm_size = get_npy_vec_size(filename)
elif ofm_size != get_npy_vec_size(filename):
- raise Exeception(f"ofm size changed for index {idx}")
+ raise Exception(f"ofm size changed for index {idx}")
common_cc_filepath = os.path.join(args.source_folder_path, common_cc_filename)
write_hpp_file(header_filename, common_cc_filepath, args.license_template,