summaryrefslogtreecommitdiff
path: root/candle-pyo3/tests
diff options
context:
space:
mode:
authorLukas Kreussel <65088241+LLukas22@users.noreply.github.com>2023-10-29 16:41:44 +0100
committerGitHub <noreply@github.com>2023-10-29 15:41:44 +0000
commit174b20805230abaf91b838598d84ab142f31a975 (patch)
tree775e1ca849f2e9f0ac2a32df476106ec1bb3a5dc /candle-pyo3/tests
parent154c674a798fd5a40d57ff9a8664856d9c41ca56 (diff)
downloadcandle-174b20805230abaf91b838598d84ab142f31a975.tar.gz
candle-174b20805230abaf91b838598d84ab142f31a975.tar.bz2
candle-174b20805230abaf91b838598d84ab142f31a975.zip
PyO3: Better shape handling (#1143)
* Negative and `*args` shape handling * Rename to `PyShapeWithHole` + validate that only one hole exists * Regenerate stubs --------- Co-authored-by: Laurent Mazare <laurent.mazare@gmail.com>
Diffstat (limited to 'candle-pyo3/tests')
-rw-r--r--candle-pyo3/tests/native/test_shape.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/candle-pyo3/tests/native/test_shape.py b/candle-pyo3/tests/native/test_shape.py
new file mode 100644
index 00000000..864e24d6
--- /dev/null
+++ b/candle-pyo3/tests/native/test_shape.py
@@ -0,0 +1,31 @@
+from candle import Tensor
+from candle import rand
+import pytest
+
+
+def test_absolute_shapes_are_valid():
+ a = rand((10, 20))
+ assert a.shape == (10, 20)
+
+ b = rand(10, 20)
+ assert b.shape == (10, 20)
+ pytest.raises(OverflowError, lambda: rand((10, 20, -1)))
+ pytest.raises(OverflowError, lambda: rand(-1, 20))
+ pytest.raises(TypeError, lambda: rand("foo", True))
+
+
+def test_relative_shapes_are_valid():
+ a = rand(10, 20)
+ a = a.reshape((1, -1))
+ assert a.shape == (1, 200)
+
+ b = rand(10, 20)
+ b = b.reshape(-1, 1)
+ assert b.shape == (200, 1)
+
+ c = rand(10, 20)
+ pytest.raises(TypeError, lambda: c.reshape(1, "foo"))
+ pytest.raises(ValueError, lambda: c.reshape(1, -2))
+ pytest.raises(ValueError, lambda: c.reshape((-2, 1)))
+ pytest.raises(ValueError, lambda: c.reshape((0, 1)))
+ pytest.raises(ValueError, lambda: c.reshape((1, -1, -1)))