Skip to content

Commit

Permalink
Prefix tensor names with _ninetoothed_
Browse files Browse the repository at this point in the history
  • Loading branch information
voltjia committed Oct 22, 2024
1 parent 99998d7 commit 5a20e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ninetoothed/tensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(

self.dtype = dtype

self.name = f"tensor_{type(self).num_instances}"
self.name = f"_ninetoothed_tensor_{type(self).num_instances}"

if ndim is not None:
self.shape = (Symbol(self.size_string(i)) for i in range(ndim))
Expand Down

0 comments on commit 5a20e4b

Please sign in to comment.