forked from arrayfire/arrayfire
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vcpkg.json
87 lines (87 loc) · 2.24 KB
/
vcpkg.json
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "arrayfire",
"version": "3.9.0",
"homepage": "https://github.com/arrayfire/arrayfire",
"description": "ArrayFire is a HPC general-purpose library targeting parallel and massively-parallel architectures such as CPUs, GPUs, etc.",
"supports": "x64",
"dependencies": [
"boost-math",
"boost-stacktrace",
"spdlog",
"freeimage",
"span-lite"
],
"overrides": [
{
"name": "fmt",
"version": "8.1.1"
},
{
"name": "spdlog",
"version": "1.9.2"
}
],
"features": {
"tests": {
"description": "Build with tests",
"dependencies": [
"gtest"
]
},
"forge": {
"description": "Build Forge",
"dependencies": [
{
"name": "freetype",
"default-features": false
},
{
"name": "fontconfig",
"platform": "!windows"
},
"glfw3",
"glad"
]
},
"openblasfftw": {
"description": "Build with OpenBLAS/FFTW",
"dependencies": [
{
"name": "fftw3",
"features": [ "threads" ]
},
{
"name": "openblas",
"features": [ "threads" ]
},
"lapack"
]
},
"cuda": {
"description": "Build CUDA backend",
"dependencies": [
"cuda"
]
},
"opencl": {
"description": "Build OpenCL backend",
"dependencies": [
"boost-compute",
"opencl"
]
},
"mkl": {
"description": "Build with MKL",
"dependencies": [
"intel-mkl"
]
},
"cudnn": {
"description": "Build CUDA with support for cuDNN",
"dependencies": [
"cudnn"
]
}
},
"builtin-baseline": "f14984af3738e69f197bf0e647a8dca12de92996"
}