Releases: ericphanson/AllocArrays.jl
Releases · ericphanson/AllocArrays.jl
v1.1.0
v1.0.0
AllocArrays v1.0.0
Breaking changes
- set default buffer to a new AutoscalingAllocBuffer which can grow and reuse memory between batches
- mark the default buffer as able to change in non-breaking releases of AllocArrays
Merged pull requests:
- add AutoscalingAllocBuffer and make default. Mark as v1.0 (#25) (@ericphanson)
v0.4.2
AllocArrays v0.4.2
Merged pull requests:
- Add support for growable SlabBuffer, and use by default (#24) (@IanButterworth)
v0.4.1
v0.4.0
AllocArrays 0.4.0
Breaking
- reverts to the v0.2 way of doing things (see #20)
- in comparison to v0.2 adds no-op constructors so
AllocArray(a::AllocArray)
just returnsa
Diff since v0.3.0
Merged pull requests:
Closed issues:
None
v0.3.0
AllocArrays 0.3.0
Breaking
AllocArray
now only has 2 type parametersT
andN
and subtypesDenseArray{T,N}
- an array
arr
must be representable byUnsafeArrays
forAllocArray(arr)
to succeed. That means ranges like1:4
must becollect
ed before being passed toAllocArray
Diff since v0.2.0
Merged pull requests:
Closed issues:
None
v0.1.1
AllocArrays v0.1.1
- minimal update to support Bumper.jl v0.5
Merged pull requests:
- minimal update to bumper v0.5 (#15) (@ericphanson)
v0.1.0
AllocArrays v0.1.0
Merged pull requests:
- Try Flux model (#1) (@ericphanson)
- Add docs (#2) (@ericphanson)
- make unsafe method a different function (#3) (@ericphanson)
- document lack of safety with deallocation for LockedBumperAllocator (#4) (@ericphanson)
- remove piracy (#5) (@ericphanson)
- Support Bumper v0.4, test both (#6) (@ericphanson)
- Tweak tests, add examples to readme (#7) (@ericphanson)
- Defer to parent's
IndexStyle
(#8) (@ericphanson) - Revamp API, and CheckedAllocArray type (#10) (@ericphanson)
- update readme (#11) (@ericphanson)
- Fix bug (#12) (@ericphanson)
Closed issues:
- Possible memory safety features (#9)