this repo has no description
1opam-version: "2.0"
2bug-reports: "https://github.com/LaurentMazare/ocaml-torch/issues"
3homepage: "https://github.com/LaurentMazare/ocaml-torch"
4dev-repo: "git+https://github.com/LaurentMazare/ocaml-torch.git"
5maintainer: "Laurent Mazare <lmazare@gmail.com>"
6authors: [ "Laurent Mazare" ]
7
8build: [["dune" "build" "-p" name "-j" jobs]]
9
10depends: [
11 "base" {>= "0.11.0"}
12 "cmdliner"
13 "ctypes" {>= "0.11"}
14 "ctypes-foreign"
15 "dune" {>= "1.3.0"}
16 "dune-configurator"
17 "libtorch" {= "1.1.0"}
18 "npy"
19 "ocaml" {>= "4.06" & < "5.0"}
20 "ocaml-compiler-libs"
21 "ppx_custom_printf"
22 "ppx_expect"
23 "ppx_sexp_conv"
24 "sexplib"
25 "stb_image"
26 "stdio"
27]
28
29available: os = "linux" | os = "macos"
30
31synopsis: "PyTorch bindings for OCaml"
32description: """
33The ocaml-torch project provides some OCaml bindings for the PyTorch library.
34This brings to OCaml NumPy-like tensor computations with GPU acceleration and
35tape-based automatic differentiation.
36"""
37
38url {
39 src: "https://github.com/LaurentMazare/ocaml-torch/archive/0.4.tar.gz"
40 checksum: [
41 "md5=9547e9e025dacd52e405ff699539c582"
42 "sha512=23fd9bef6f5f11c55171f2383a2f7ca57330511af6521a4579410e002d8667a91e764aecc2deb1cf8d7bf3b0e988cd3020850fa4a5a1ec713dfb110ec7352892"
43 ]
44}