Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to the Born ML Framework will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.9.9] - 2026-06-17

### Changed

- **Conv im2col scratch pooling** — `sync.Pool` for colBuf and matOut buffers, eliminating per-call heap allocation and `runtime.memclr` overhead ([#101](https://github.com/born-ml/born/pull/101) by [@tphakala](https://github.com/tphakala))
- Generic `poolScratch[T]` helper with grow-in-place capacity
- Poisoned-overwrite test proves full overwrite safety
- Zero-alloc conv forward pass on warm pool

## [0.9.8] - 2026-06-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
> **Architecture**: Burn-inspired (Rust), Go-idiomatic API
> **Philosophy**: Correctness → Performance → Scale

**Last Updated**: 2026-06-17 | **Current Version**: v0.9.8 | **Go**: 1.26+ | **Strategy**: Core → GPU → Models → Performance → Scale → Production → v1.0 LTS
**Last Updated**: 2026-06-17 | **Current Version**: v0.9.9 | **Go**: 1.26+ | **Strategy**: Core → GPU → Models → Performance → Scale → Production → v1.0 LTS

---

Expand Down
Loading