We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93915c4 commit 2dec146Copy full SHA for 2dec146
tests/ndarray/test_concatenate.py
@@ -24,6 +24,8 @@
24
([121, 121, 101], [121, 121, 10], "i8", -1),
25
# 4-dimensional arrays
26
([21, 121, 101, 10], [2, 121, 101, 10], "f4", 0),
27
+ ([121, 21, 101, 10], [121, 12, 101, 10], "i8", 1),
28
+ ([121, 121, 10, 10], [121, 121, 1, 10], "i8", 2),
29
# TODO: this test fails
30
# ([121, 121, 101, 2], [121, 121, 101, 10], "i8", -1),
31
],
@@ -47,6 +49,8 @@ def test_concat2(shape1, shape2, dtype, axis):
47
49
([121, 121, 101], [121, 121, 10], [121, 121, 1], "i4", 2),
48
50
# # 4-dimensional arrays
51
([21, 121, 101, 10], [2, 121, 101, 10], [1, 121, 101, 10], "f4", 0),
52
+ ([121, 21, 101, 10], [121, 12, 101, 10], [121, 1, 101, 10], "i8", 1),
53
+ ([121, 121, 10, 10], [121, 121, 1, 10], [121, 121, 3, 10], "i8", 2),
54
55
# ([121, 121, 101, 2], [121, 121, 101, 10], [121, 121, 101, 1], "i8", -1),
56
0 commit comments