Skip to content

Commit d181ee2

Browse files
fix micro-optim
1 parent 7e936fe commit d181ee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tripy/tripy/backend/mlir/executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def get_output_tensor_runtime_info(self, inputs, output_devices=List[device]):
108108
outputs_shape, all_outputs_known = self._get_outputs_shape()
109109
if not all_outputs_known:
110110
inputs_shape = self._get_inputs_runtime_shape(inputs)
111-
outputs_shape = self._execute_shape_inference(inputs_shape)
111+
outputs_shape = self._execute_shape_inference(inputs_shape, outputs_shape)
112112
output_tensor_info = self._get_output_tensor_info(outputs_shape, output_devices)
113113
return output_tensor_info
114114

0 commit comments

Comments
 (0)