Skip to content

Commit 71cf174

Browse files
authored
Merge pull request #199 from coreweave/eta/long-tensors
feat(serialization): Support tensors with very long dimensions
2 parents 79c5063 + 03f2423 commit 71cf174

File tree

4 files changed

+417
-38
lines changed

4 files changed

+417
-38
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
### Added
11+
12+
- Tensors with long dimensions (≥ `2 ** 32` elements in a single dimension)
13+
can now be serialized and deserialized
14+
15+
### Fixed
16+
17+
- `tensorizer.torch_compat` can now serialize and deserialize tensors that have
18+
storages with sizes ≥ `2 ** 32`
19+
820
## [2.11.1] - 2025-08-05
921

1022
### Fixed
@@ -492,6 +504,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
492504
- `get_gpu_name`
493505
- `no_init_or_tensor`
494506

507+
[Unreleased]: https://github.com/coreweave/tensorizer/compare/v2.11.1...HEAD
495508
[2.11.1]: https://github.com/coreweave/tensorizer/compare/v2.11.0...v2.11.1
496509
[2.11.0]: https://github.com/coreweave/tensorizer/compare/v2.10.1...v2.11.0
497510
[2.10.1]: https://github.com/coreweave/tensorizer/compare/v2.10.0...v2.10.1

tensorizer/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.11.1"
1+
__version__ = "2.12.0a0"

0 commit comments

Comments
 (0)