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" {>= "v0.11.0" & < "v0.17"} 12 "cmdliner" 13 "ctypes" {>= "0.11"} 14 "ctypes-foreign" 15 "dune" {>= "1.3.0"} 16 "dune-configurator" 17 "libtorch" {>= "1.7.0" & < "1.8.0"} 18 "npy" 19 "ocaml" {>= "4.08"} 20 "ocaml-compiler-libs" 21 "ppx_custom_printf" 22 "ppx_expect" 23 "ppx_sexp_conv" 24 "sexplib" 25 "stdio" 26] 27 28available: arch = "x86_64" & (os = "linux" | os = "macos") 29 30synopsis: "PyTorch bindings for OCaml" 31description: """ 32The ocaml-torch project provides some OCaml bindings for the PyTorch library. 33This brings to OCaml NumPy-like tensor computations with GPU acceleration and 34tape-based automatic differentiation. 35""" 36 37url { 38 src: "https://github.com/LaurentMazare/ocaml-torch/archive/0.11.tar.gz" 39 checksum: [ 40 "md5=45ccaed01b4aea5d1f9ae0c89c85f78b" 41 "sha512=c3d02319adb88f641c0eaf312c4a15525a28f1ee8ef46be10111aafbefb40b29fc1746733be49f6a2049a5a17ccc203a8c0481a18f70eed05b9cf4a34830a2c2" 42 ] 43}