Open
Description
Background
Follow-up from #1921. Move op_configuration.rs
from burn-import
to onnx-ir
to align with ONNX IR structure.
Task
Relocate op_configuration.rs
to onnx-ir
, ensuring functionality and dependencies are preserved.
Steps
- Move
op_configuration.rs
fromburn-import/src/
toonnx-ir/src/
. - Update import paths in all dependent modules to reference
onnx-ir
. - Adjust
Cargo.toml
inonnx-ir
andburn-import
as needed. - Run
cargo test
to verify no breaking changes. - Update documentation to reflect the new location.
Acceptance Criteria
op_configuration.rs
is inonnx-ir/src/
.- All imports and references are updated.
- Project builds (
cargo build
) and tests pass (cargo test
). - Documentation is updated.
- No regressions in ONNX model import or node configuration.