Bug
Two underscore-prefixed parameters in layer.rs:
trace_layers() at line 83: _verbose: bool — verbose mode unimplemented
compare_with_reference() at line 100: _layers: &[LayerTrace] — layer data accepted but never used in comparison
Root Cause
Parameters prefixed with underscore, silently discarded.
Expected Behavior
--verbose should show additional layer details (tensor stats, weight info)
compare_with_reference() should use the layers data for actual comparison
Fix
Add warnings for unimplemented features.
Found via kaizen dogfooding audit.
Bug
Two underscore-prefixed parameters in layer.rs:
trace_layers()at line 83:_verbose: bool— verbose mode unimplementedcompare_with_reference()at line 100:_layers: &[LayerTrace]— layer data accepted but never used in comparisonRoot Cause
Parameters prefixed with underscore, silently discarded.
Expected Behavior
--verboseshould show additional layer details (tensor stats, weight info)compare_with_reference()should use the layers data for actual comparisonFix
Add warnings for unimplemented features.
Found via kaizen dogfooding audit.