Skip to content

Commit c8df23a

Browse files
committed
[Performance] Remove list against list check during set
ghstack-source-id: 0cd6569 Pull Request resolved: #954
1 parent 257c859 commit c8df23a

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

tensordict/_td.py

+10-12
Original file line numberDiff line numberDiff line change
@@ -2323,18 +2323,16 @@ def _set_at_str(self, key, value, idx, *, validated, non_blocking: bool):
23232323

23242324
if is_non_tensor(value) and not (self._is_shared or self._is_memmap):
23252325
dest = tensor_in
2326-
is_diff = dest[idx].tolist() != value.tolist()
2327-
if is_diff:
2328-
dest_val = dest.maybe_to_stack()
2329-
dest_val[idx] = value
2330-
if dest_val is not dest:
2331-
self._set_str(
2332-
key,
2333-
dest_val,
2334-
validated=True,
2335-
inplace=False,
2336-
ignore_lock=True,
2337-
)
2326+
dest_val = dest.maybe_to_stack()
2327+
dest_val[idx] = value
2328+
if dest_val is not dest:
2329+
self._set_str(
2330+
key,
2331+
dest_val,
2332+
validated=True,
2333+
inplace=False,
2334+
ignore_lock=True,
2335+
)
23382336
return
23392337

23402338
if isinstance(idx, tuple) and len(idx) and isinstance(idx[0], tuple):

0 commit comments

Comments
 (0)