Skip to content

Commit

Permalink
fixed wrong assignment of pool und stride variables #107
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristophBrandl committed Dec 15, 2019
1 parent 233cca4 commit b93fe56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/gcc/backend_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[]
Expand All @@ -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=[]
Expand Down

0 comments on commit b93fe56

Please sign in to comment.