Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Refactor] MemoryMappedTensor #541

Merged
merged 53 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
d342971
amend
vmoens Jul 21, 2023
b16837e
init
vmoens Jul 21, 2023
be58682
Merge branch 'main' into memmap_tensor_refact
vmoens Aug 11, 2023
374f0b2
amend
vmoens Aug 11, 2023
7046a83
amend
vmoens Aug 11, 2023
5ef4f63
amend
vmoens Aug 11, 2023
75bc4d9
amend
vmoens Aug 11, 2023
a6103b8
amend
vmoens Aug 11, 2023
945941f
amend
vmoens Aug 11, 2023
624d1dc
amend
vmoens Aug 11, 2023
2967f01
amend
vmoens Aug 11, 2023
0dc76bd
amend
vmoens Aug 11, 2023
2c59eaa
amend
vmoens Aug 11, 2023
cf55bfe
amend
vmoens Aug 12, 2023
92c0d73
amend
vmoens Aug 12, 2023
cd16f38
amend
vmoens Aug 12, 2023
d312ff2
amend
vmoens Aug 12, 2023
3e68b2c
amend
vmoens Aug 12, 2023
1c0694f
amend
vmoens Aug 30, 2023
751d9ec
amend
vmoens Oct 10, 2023
2b70ba5
amend
vmoens Oct 10, 2023
4fc0bcb
amend
vmoens Oct 10, 2023
fd8c272
tensordict_
vmoens Oct 10, 2023
90e0d3b
Merge branch 'main' into memmap_tensor_refact
vmoens Oct 11, 2023
b3b2856
amend
vmoens Oct 11, 2023
ef280f9
amend
vmoens Oct 12, 2023
21d5268
amend
vmoens Oct 12, 2023
d79f4ee
amend
vmoens Oct 12, 2023
11f7f32
amend
vmoens Oct 12, 2023
f96c05c
amend
vmoens Oct 12, 2023
b25485e
amend
vmoens Oct 12, 2023
5275f3a
amend
vmoens Oct 12, 2023
1e45b4a
amend
vmoens Oct 18, 2023
c8132be
amend
vmoens Oct 18, 2023
0403add
amend
vmoens Oct 18, 2023
7d174a4
amend
vmoens Oct 18, 2023
de0c028
amend
vmoens Oct 19, 2023
6b40de8
amend
vmoens Oct 19, 2023
1752bb6
amend
vmoens Oct 19, 2023
319e1bd
amend
vmoens Oct 19, 2023
af7f289
amend
vmoens Oct 19, 2023
3e31297
amend
vmoens Oct 19, 2023
a481f89
amend
vmoens Oct 19, 2023
1d13105
amend
vmoens Oct 21, 2023
19ae8e0
amend
vmoens Oct 30, 2023
ba931ef
Merge remote-tracking branch 'origin/main' into memmap_tensor_refact
vmoens Nov 14, 2023
f2e624d
amend
vmoens Nov 14, 2023
d7668fa
amend
vmoens Nov 14, 2023
0528111
amend
vmoens Nov 14, 2023
7413381
amend
vmoens Nov 14, 2023
029de18
amend
vmoens Nov 14, 2023
a5c5168
amend
vmoens Nov 14, 2023
65845b4
amend
vmoens Nov 14, 2023
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
Prev Previous commit
Next Next commit
amend
  • Loading branch information
vmoens committed Nov 14, 2023
commit f2e624df5a6943d10fd34e05b878f1a3ff3c912e
4 changes: 2 additions & 2 deletions tensordict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

from tensordict.memmap import MemmapTensor, set_transfer_ownership
from tensordict.memmap_refact import MemoryMappedTensor
from tensordict.memmap import MemoryMappedTensor
from tensordict.memmap_deprec import MemmapTensor, set_transfer_ownership
from tensordict.persistent import PersistentTensorDict
from tensordict.tensorclass import tensorclass
from tensordict.tensordict import (
Expand Down
Loading
Loading