-
Notifications
You must be signed in to change notification settings - Fork 2
/
neural_nets_lib.opam
56 lines (56 loc) · 1.42 KB
/
neural_nets_lib.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.5.1"
synopsis:
"A from-scratch Deep Learning framework with an optimizing compiler, shape inference, concise syntax"
description:
"OCaml Compiles Algorithms for Neural Networks Learning is a compiled Deep Learning framework that puts emphasis on low-level backends (like tinygrad), shape inference, concise notation (ab)using PPX."
maintainer: ["Lukasz Stafiniak <[email protected]>"]
authors: ["Lukasz Stafiniak"]
license: "BSD-2-Clause"
tags: ["deeplearning" "tensor" "backprop" "jit" "gccjit" "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"}
"arrayjit" {>= "0.4.1"}
"printbox"
"printbox-text"
"ocannl_npy"
"angstrom" {>= "0.15"}
"stdio"
"sexplib"
"num"
"time_now"
"ppxlib"
"ppx_compare"
"ppx_fields_conv"
"ppx_hash"
"ppx_here"
"ppx_sexp_conv"
"ppx_string"
"ppx_variants_conv"
"ppx_expect"
"ppx_minidebug" {>= "2.0.0"}
"patdiff" {>= "v0.15.0"}
"odoc" {with-doc}
"md2mld" {with-doc}
]
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"