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 baa3fe8 commit 88a6a7cCopy full SHA for 88a6a7c
examples/simple-extension/README.md
@@ -21,5 +21,6 @@ import rust_ext
21
22
a = np.array([0.0, 1.0])
23
b = np.array([2.0, 3.0])
24
-rust_ext(2.0, a, b)
+rust_ext.axpy(2.0, a, b)
25
```
26
+which returns `array([2., 5.])`.
0 commit comments