aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/ginkgo/vcpkg.json
blob: 6eb23a0d9546b1f12fa2165ce2c7cf6c6a499727 (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
{
  "name": "ginkgo",
  "version-semver": "1.10.0",
  "description": "Ginkgo is a high-performance linear algebra library for manycore systems, with a focus on sparse solution of linear systems.",
  "homepage": "https://github.com/ginkgo-project/ginkgo",
  "license": "BSD-3-Clause",
  "supports": "!(x86 | android)",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "features": {
    "bfloat16": {
      "description": "Enable bfloat16 precision in Ginkgo",
      "supports": "!windows"
    },
    "cuda": {
      "description": "Build the CUDA backend of Ginkgo",
      "dependencies": [
        "cuda"
      ]
    },
    "half": {
      "description": "Enable half precision in Ginkgo",
      "supports": "!windows"
    },
    "mpi": {
      "description": "Build the distributed MPI backend of Ginkgo",
      "supports": "!windows",
      "dependencies": [
        "mpi"
      ]
    },
    "openmp": {
      "description": "Build the OpenMP backend of Ginkgo",
      "supports": "mingw | !windows"
    }
  }
}