Csongor Szabo
Results
2
comments of
Csongor Szabo
Same issue here with dynamic input shape :grimacing:
This worked for me with dynamic shape inputs: ```python @register_torch_op(override=True) def narrow(context, node): data, dim, start, length = _get_inputs(context, node, expected=4) if any_symbolic(data.shape): data_shape = mb.shape(x=data).sym_val else: data_shape = mb.shape(x=data).val...