diff --git a/src/finn/core/onnx_exec.py b/src/finn/core/onnx_exec.py index 0102d236c3a9a6eafe87f59d01e23e0d1307b6f4..2ecc89407a890aa8249d00f37b4790854de634c0 100644 --- a/src/finn/core/onnx_exec.py +++ b/src/finn/core/onnx_exec.py @@ -124,8 +124,8 @@ def execute_onnx(model, input_dict, return_full_exec_context=False): str(input_dict[inp_name].shape), ) ) - else: - raise Exception("Provided input not found in graph context: %s" % inp_name) + # else: + # raise Exception("Provided input not found in graph context: %s" % inp_name) # check if model has an execution mode set # if None, execute model node by node using execute_node()