aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/ginkgo/vcpkg.json
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/ginkgo/vcpkg.json')
-rw-r--r--vcpkg/ports/ginkgo/vcpkg.json45
1 files changed, 45 insertions, 0 deletions
diff --git a/vcpkg/ports/ginkgo/vcpkg.json b/vcpkg/ports/ginkgo/vcpkg.json
new file mode 100644
index 0000000..6eb23a0
--- /dev/null
+++ b/vcpkg/ports/ginkgo/vcpkg.json
@@ -0,0 +1,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"
+ }
+ }
+}