-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcudajit.opam
47 lines (47 loc) · 1.46 KB
/
cudajit.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.6.1"
synopsis:
"Bindings to the `cuda` and `nvrtc` libraries with a unified interface"
description:
"Bindings to manually selected parts of `lcuda` and `lnvrtc`, with a few types and conversion functions to facilitate use."
maintainer: ["Lukasz Stafiniak <lukstafi@gmail.com>"]
authors: ["Lukasz Stafiniak"]
license: "MIT"
tags: ["cuda" "jit" "nvrtc"]
homepage: "https://github.com/lukstafi/ocaml-cudajit"
doc: "https://github.com/lukstafi/ocaml-cudajit/blob/master/README.md"
bug-reports: "https://github.com/lukstafi/ocaml-cudajit/issues"
depends: [
"ocaml" {>= "4.13"}
"dune" {>= "3.11"}
"ctypes" {>= "0.14.0"}
"ctypes-foreign"
"sexplib0"
"ppx_sexp_conv"
"ppx_expect"
"conf-cuda"
"odoc" {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/ocaml-cudajit.git"
post-messages: [
"NOTE: CUDA drivers are outside the scope of system packages and might need to be installed manually."
{failure & !conf-cuda-config:is_wsl}
"NOTE: double-check if CUDA drivers for Windows are installed and Linux libraries don't hide WSL stubs; see: https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#network-repo-installation-for-wsl"
{failure & conf-cuda-config:is_wsl}
]
x-maintenance-intent: ["(latest)"]