aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/ggml/vcpkg.json
blob: 8ee70b44d56eb06d3805786f1b92eda0db098133 (plain)
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
{
  "name": "ggml",
  "version": "0.9.4",
  "port-version": 1,
  "description": "Tensor library for machine learning",
  "homepage": "https://github.com/ggml-org/ggml",
  "license": "MIT",
  "supports": "!uwp",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "features": {
    "blas": {
      "description": "Enable BLAS support",
      "dependencies": [
        "blas",
        "cblas"
      ]
    },
    "cuda": {
      "description": "Enable CUDA support",
      "supports": "!(windows & staticcrt)",
      "dependencies": [
        "cuda"
      ]
    },
    "metal": {
      "description": "Enable Metal support",
      "supports": "osx"
    },
    "opencl": {
      "description": "Enable OpenCL support",
      "supports": "!arm32",
      "dependencies": [
        "opencl"
      ]
    },
    "openmp": {
      "description": "Enable OpenMP support",
      "supports": "!osx"
    },
    "vulkan": {
      "description": "Enable Vulkan support",
      "dependencies": [
        {
          "name": "ggml",
          "host": true,
          "default-features": false,
          "features": [
            "vulkan"
          ]
        },
        {
          "name": "shaderc",
          "host": true
        },
        "vulkan"
      ]
    }
  }
}