We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d347ad7 commit ffbb7e5Copy full SHA for ffbb7e5
README.md
@@ -5,6 +5,17 @@ The main purpose of the online tutorial is for teaching how to use Owl software.
5
The tooling and template reuse those in [Real World OCaml](https://realworldocaml.org/) under original authors' permission, with minor modidications.
6
7
8
+Test code:
9
+
10
+```ocaml
11
+let test_sum_reduce ?(seq = false) ?(a = true) expected shape axis =
12
+ let input = if seq = false then N.ones shape else N.sequential shape in
13
+ let output = if a = true then N.sum_reduce ~axis input else N.sum_reduce input in
14
+ let out_shp = N.shape output in
15
+ let expected = N.of_array expected out_shp in
16
+ close output expected
17
+```
18
19
## Compile
20
21
- `make` uses docker container to build the book.
0 commit comments