Skip to content

Commit ffbb7e5

Browse files
committed
editing...
1 parent d347ad7 commit ffbb7e5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ The main purpose of the online tutorial is for teaching how to use Owl software.
55
The tooling and template reuse those in [Real World OCaml](https://realworldocaml.org/) under original authors' permission, with minor modidications.
66

77

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+
819
## Compile
920

1021
- `make` uses docker container to build the book.

0 commit comments

Comments
 (0)