this repo has no description
1opam-version: "2.0"
2homepage: "https://github.com/LaurentMazare/ocaml-torch"
3maintainer: "lmazare@gmail.com"
4bug-reports: "https://github.com/LaurentMazare/ocaml-torch/issues"
5dev-repo: "git+https://github.com/LaurentMazare/ocaml-torch.git"
6authors: [
7 "Laurent Mazare"
8]
9install: [
10 [
11 "sh"
12 "-c"
13 "test -d %{lib}%/libtorch/lib/libtorch.so || ( unzip libtorch-linux.zip && mv -f libtorch %{lib}%/ )"
14 ]
15]
16synopsis: "LibTorch library package"
17description: """
18This is used by the torch package to trigger the install of the
19libtorch library."""
20extra-source "libtorch-linux.zip" {
21 src:
22 "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.8.0%2Bcpu.zip"
23 checksum: [
24 "sha256=0a0a02d264a68a48cda7a0ff8597c1162916336557e08d26ad6ce906f0c4a35d"
25 "md5=82969e58ae8cabee16746711850d6fd9"
26 ]
27}
28available: arch = "x86_64" & os = "linux"