Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.66 KB

CHANGELOG.md

File metadata and controls

49 lines (40 loc) · 1.66 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

[0.2.0] - 2023-01-31

Added

  • Support for unpickling torch BFloat16Storage (PyTorch bfloat16 values are converted to Go float32).

Changed

  • Performance improvements (mostly involving better buffered reading, and new default capacities for maps and slices)
  • types.Dict is now implemented as a slice of DictEntry, rather than a slice of pointers to it, to reduce extra allocations.
  • Test data has been regenerated with Python 3.10.9 and PyTorch 1.13.1.

[0.1.0] - 2021-01-06

Added

  • More and better documentation
  • OrderedDict.MustGet()
  • Dict.MustGet()
  • pytorch.LoadWithUnpickler() which allows loading PyTorch modules using a custom unpickler.
  • Handle legacy method torch.nn.backends.thnn._get_thnn_function_backend when loading pytorch modules.

Changed

  • FrozenSet implementation was modified, avoiding confusion with Set.
  • Replace build CI job with tests and coverage
  • Dict has been reimplemented using a slice, instead of a map, because in Go not all types can be map's keys (e.g. slices).
  • Use Go version 1.15

Removed

  • Unused method List.Extend

[0.0.1-alpha.1] - 2020-05-23

Fixed

  • Modify GitHub Action steps Build and Test including all sub-packages.

[0.0.1-alpha.0] - 2020-05-23

Added

  • Initial implementation of types package
  • Initial implementation of pickle package
  • Initial implementation of pytorch package