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.5"} 14 "ctypes-foreign" 15 "dune" {>= "1.3.0"} 16 "dune-configurator" 17 "libtorch" {>= "1.0.1" & < "1.1.0"} 18 "npy" 19 "ocaml" {>= "4.06" & < "5.0.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" 30x-ci-accept-failures: ["debian-unstable"] 31 32synopsis: "PyTorch bindings for OCaml" 33description: """ 34The ocaml-torch project provides some OCaml bindings for the PyTorch library. 35This brings to OCaml NumPy-like tensor computations with GPU acceleration and 36tape-based automatic differentiation. 37""" 38 39url { 40 src: "https://github.com/LaurentMazare/ocaml-torch/archive/0.3.tar.gz" 41 checksum: [ 42 "md5=353b6053959182da904bffada2f0d8e0" 43 "sha512=84471d6f86fdf1e35c5119b02536c812dc7822d3fb5e5d47a83e5c1492b7362f9be17361acfce69f1dd0e684fc49c2392c43fcf87a59f26fb873b3324cdb5d4e" 44 ] 45}