Skip to content

Commit 7950d54

Browse files
committed
mapping UNKNOWN padding to SAME (according to experiment models)
1 parent 182da41 commit 7950d54

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • utensor_cgen/backend/utensor/code_generator/rearch/_operators

utensor_cgen/backend/utensor/code_generator/rearch/_operators/_impls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ def get_eval_snippet(self, op_var_name, op_info, tensor_var_map):
349349

350350
class _CommonParams(_Operator):
351351
_PADDING_MAP = {
352-
0: "UNKNOWN",
352+
0: "SAME", # "UNKNOWN",
353353
1: "VALID",
354354
2: "SAME"
355355
}

0 commit comments

Comments
 (0)