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.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 "stb_image_write" 27 "stdio" 28] 29 30available: [ os = "linux" ] 31x-ci-accept-failures: ["debian-unstable"] 32 33synopsis: "PyTorch bindings for OCaml" 34description: """ 35The ocaml-torch project provides some OCaml bindings for the PyTorch library. 36This brings to OCaml NumPy-like tensor computations with GPU acceleration and 37tape-based automatic differentiation. 38""" 39 40url { 41 src: "https://github.com/LaurentMazare/ocaml-torch/archive/0.2.tar.gz" 42 checksum: [ 43 "md5=2a2359b4e241c8099e50daf1d70dace1" 44 "sha512=7b80a60bc82745ba932d24847aca64d221848528b3f982f408ad0944a7b60fd35f2d69efcbebce5be5447a7a593b2bdf7bf93c788279cf3c4d0c05dde912d065" 45 ] 46}