Skip to content

Commit 658b723

Browse files
committed
add comment on symbolic test
1 parent 7058db8 commit 658b723

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/xtensor/test_shape.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ def test_unstack_simple():
117117
def test_unstack_symbolic():
118118
x = xtensor(dims=("a", "b", "c"))
119119
y = stack(x, bc=("b", "c"))
120+
# Perform an operation along the stacked index that changes the values but not the length
120121
y = y[:, ::-1]
121122
z = unstack(y, bc={"b": x.sizes["b"], "c": x.sizes["c"]})
122123
x_test = xr_arange_like(xtensor(dims=x.dims, shape=(2, 3, 5)))

0 commit comments

Comments
 (0)