(self, name, shape)
| 486 | return self.forward(*args, **inputs) |
| 487 | |
| 488 | def set_runtime_tensor_shape(self, name, shape): |
| 489 | self.execution_context.set_input_shape(name, shape) |
| 490 | |
| 491 | def forward(self, *args, **kwargs): |
| 492 | return_list = kwargs.pop("return_list", False) |