You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
⚡ Bolt: Optimize Reader.Read* methods to avoid reflection
Replaced `binary.Read` with direct `io.ReadFull` into stack-allocated buffers in `pkg/dicomio/reader.go`. This avoids reflection overhead and reduces memory allocations.
Performance impact:
- BenchmarkParse/NoOptions/1.dcm-4: ~14% faster
- BenchmarkParse/SkipPixelData/1.dcm-4: ~25% faster
- Consistent improvements across all benchmarks.
0 commit comments