Update undefined dimensions parcing im parameter extender (#9699)
This commit is contained in:
parent
18309852ba
commit
919ada63ad
@ -26,7 +26,7 @@ class Parameter_extender(Extender):
|
|||||||
shape[i] = -1
|
shape[i] = -1
|
||||||
if ".." in dim:
|
if ".." in dim:
|
||||||
has_shapes_with_boundaries = True
|
has_shapes_with_boundaries = True
|
||||||
shape = shape_array([d if d != -1 else dynamic_dimension_value for d in shape])
|
shape = shape_array([d if d not in [-1, '?'] else dynamic_dimension_value for d in shape])
|
||||||
|
|
||||||
if has_shapes_with_boundaries:
|
if has_shapes_with_boundaries:
|
||||||
shape_list = []
|
shape_list = []
|
||||||
|
Loading…
Reference in New Issue
Block a user