Commits


G. Ramalingam authored and GitHub committed 2facc5efe6c
Fix function inliner bug re. outer-scope names (#14734) ### Description Fix the function inliner logic for renaming variables. Typically, a FunctionProto does not contain references to outer-scope names. However, special cases, such as the function-expansion of SequenceMap, can generate such FunctionProtos. Extend the renaming logic to ensure that references to outer-scope names are not renamed. ### Motivation and Context Fixes https://github.com/onnx/onnx/issues/4892 Signed-off-by: Ganesan Ramalingam <grama@microsoft.com>