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 3816b86 commit a76a1e4Copy full SHA for a76a1e4
1 file changed
bench/ndarray/concatenate.py
@@ -267,9 +267,9 @@ def main():
267
268
# Quick verification of result shape
269
if axis == 0:
270
- expected_shape = (size, size) # After concatenation along axis 0
+ expected_shape = (size // num_arrays * num_arrays, size) # After concatenation along axis 0
271
else:
272
- expected_shape = (size, size) # After concatenation along axis 1
+ expected_shape = (size, size // num_arrays * num_arrays) # After concatenation along axis 1
273
274
# Verify shapes match
275
shapes = [numpy_shape, shape1, shape2]
0 commit comments