diff --git a/backend/gcc/backend_utils.py b/backend/gcc/backend_utils.py index 718a20c..2a4cb49 100644 --- a/backend/gcc/backend_utils.py +++ b/backend/gcc/backend_utils.py @@ -163,7 +163,7 @@ def get_pool_size_strings(input): else: height_array.append(0) width_array.append(0) - return convert_array_to_string(width_array), convert_array_to_string(height_array) + return convert_array_to_string(height_array), convert_array_to_string(width_array) def get_strides_strings(input): width_array=[] @@ -178,7 +178,7 @@ def get_strides_strings(input): else: height_array.append(0) - return convert_array_to_string(width_array), convert_array_to_string(height_array) + return convert_array_to_string(height_array), convert_array_to_string(width_array) def get_padding_string(input, padding_types): array=[]