Skip to content

Commit 8e474b0

Browse files
committed
update workflow
1 parent af38584 commit 8e474b0

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/main.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ on:
66
- main
77

88
jobs:
9-
deploy:
10-
name: Deploy Owl doc
9+
deploy-owl:
10+
name: Install Owl and build doc
1111
runs-on: ubuntu-latest
12+
1213
steps:
1314
- uses: actions/checkout@main
1415

@@ -25,6 +26,9 @@ jobs:
2526
- name: OCaml Deps
2627
run: opam install ocaml-compiler-libs alcotest conf-openblas ctypes dune-configurator stdio npy odoc
2728

29+
- name: Compile Owl and install
30+
run: opam exec -- dune build @install
31+
2832
- name: Build doc
2933
run: |
3034
opam exec -- dune build @doc

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Owl - OCaml Scientific Computing [![Build Status](https://travis-ci.org/owlbarn/owl.svg?branch=master)](https://travis-ci.org/owlbarn/owl)
2-
[![build](https://github.com/owlbarn/owl/actions/workflows/main.yml/badge.svg)](https://github.com/owlbarn/owl/actions/workflows/main.yml)
1+
# Owl - OCaml Scientific Computing [![build](https://github.com/owlbarn/owl/actions/workflows/main.yml/badge.svg)](https://github.com/owlbarn/owl/actions/workflows/main.yml)
32

43
Owl is a dedicated system for scientific and engineering computing. The system is developed in OCaml and licensed under MIT. The project is originated by [Liang Wang](https://liang.ocaml.xyz) and currently led by [Jianxin Zhao](https://jianxin.ocaml.xyz). The history of the project is on the [Wikipedia](https://en.wikipedia.org/wiki/Owl_Scientific_Computing).
54

src/owl/fftpack/owl_fft_generic.mli

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ highest dimension if not specified. The return is not scaled.
1717

1818
val ifft : ?axis:int -> (Complex.t, 'a) t -> (Complex.t, 'a) t
1919
(**
20-
[ifft ~axis x] performs inverse 1-dimensional FFT on a complex input. [axis]
21-
is the highest dimension by default.
20+
[ifft ~axis x] performs inverse 1-dimensional FFT on a complex input. The parameter [axis]
21+
indicates the highest dimension by default.
2222
*)
2323

2424
val rfft : ?axis:int -> otyp:(Complex.t, 'a) kind -> (float, 'b) t -> (Complex.t, 'a) t
@@ -29,7 +29,7 @@ precision with input [x]. You can skip this parameter by using a submodule
2929
with specific precision such as [Owl.Fft.S] or [Owl.Fft.D].
3030
*)
3131

32-
val irfft
32+
val irfft
3333
: ?axis:int
3434
-> ?n:int
3535
-> otyp:(float, 'a) kind

0 commit comments

Comments
 (0)