-
Notifications
You must be signed in to change notification settings - Fork 2
/
arrayjit.opam
61 lines (61 loc) · 1.41 KB
/
arrayjit.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.5.1"
synopsis:
"An array language compiler with multiple backends (CPU, CUDA), staged compilation"
description:
"The optimizing compiler sub-package of OCANNL. Use neural_nets_lib instead to also get: nice syntax, shape inference, backpropagation, optimizers."
maintainer: ["Lukasz Stafiniak <[email protected]>"]
authors: ["Lukasz Stafiniak"]
license: "BSD-2-Clause"
tags: ["deeplearning" "array" "jit" "CUDA"]
homepage: "https://github.com/lukstafi/ocannl"
doc: "https://github.com/lukstafi/ocannl/blob/master/README.md"
bug-reports: "https://github.com/lukstafi/ocannl/issues"
depends: [
"ocaml" {>= "5.2.0"}
"dune" {>= "3.11"}
"base" {>= "v0.17.0"}
"ctypes" {>= "0.23"}
"ctypes-foreign" {>= "0.23"}
"printbox"
"printbox-text"
"ocannl_npy"
"stdio"
"sexplib"
"num"
"saturn_lockfree" {>= "0.5.0"}
"ppxlib"
"ppx_compare"
"ppx_hash"
"ppx_here"
"ppx_sexp_conv"
"ppx_string"
"ppx_variants_conv"
"ppx_expect"
"ppx_minidebug" {>= "2.0.0"}
"odoc" {with-doc}
]
depopts: [
"cudajit" {>= "0.6.1"}
"gccjit" {>= "0.3.2"}
]
conflicts: [
"cudajit" {< "0.6.1"}
"gccjit" {< "0.3.2"}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/lukstafi/ocannl.git"