diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/scripts/test_ports/vcpkg-ci-ggml/vcpkg.json | |
Diffstat (limited to 'vcpkg/scripts/test_ports/vcpkg-ci-ggml/vcpkg.json')
| -rw-r--r-- | vcpkg/scripts/test_ports/vcpkg-ci-ggml/vcpkg.json | 128 |
1 files changed, 128 insertions, 0 deletions
diff --git a/vcpkg/scripts/test_ports/vcpkg-ci-ggml/vcpkg.json b/vcpkg/scripts/test_ports/vcpkg-ci-ggml/vcpkg.json new file mode 100644 index 0000000..caddf96 --- /dev/null +++ b/vcpkg/scripts/test_ports/vcpkg-ci-ggml/vcpkg.json @@ -0,0 +1,128 @@ +{ + "name": "vcpkg-ci-ggml", + "version-string": "ci", + "description": "Port to validate ggml", + "homepage": "https://github.com/microsoft/vcpkg", + "license": "MIT", + "dependencies": [ + { + "$comment": "Lacks default (CPU) backend on arm64 windows", + "name": "ggml", + "default-features": false, + "features": [ + { + "name": "vulkan", + "platform": "windows & arm64" + } + ] + }, + { + "name": "vcpkg-cmake", + "host": true + } + ], + "default-features": [ + { + "name": "blas", + "platform": "!(windows & static)" + }, + { + "$comment": "Lacks pkg-config link libs for static builds", + "name": "cuda", + "platform": "windows & x64 & !uwp & !xbox & !static" + }, + { + "name": "metal", + "platform": "osx" + }, + { + "name": "opencl", + "platform": "!arm32" + }, + { + "name": "openmp", + "platform": "!osx" + }, + { + "name": "vulkan", + "platform": "!x86" + } + ], + "features": { + "blas": { + "description": "Enable BLAS support", + "dependencies": [ + { + "name": "ggml", + "default-features": false, + "features": [ + "blas" + ] + } + ] + }, + "cuda": { + "description": "Enable CUDA support", + "dependencies": [ + { + "name": "ggml", + "default-features": false, + "features": [ + "cuda" + ] + } + ] + }, + "metal": { + "description": "Enable Metal support", + "supports": "osx", + "dependencies": [ + { + "name": "ggml", + "default-features": false, + "features": [ + "metal" + ] + } + ] + }, + "opencl": { + "description": "Enable OpenCL support", + "dependencies": [ + { + "name": "ggml", + "default-features": false, + "features": [ + "opencl" + ] + } + ] + }, + "openmp": { + "description": "Enable OpenMP support", + "supports": "!osx", + "dependencies": [ + { + "name": "ggml", + "default-features": false, + "features": [ + "openmp" + ] + } + ] + }, + "vulkan": { + "description": "Enable Vulkan support", + "supports": "!x86", + "dependencies": [ + { + "name": "ggml", + "default-features": false, + "features": [ + "vulkan" + ] + } + ] + } + } +} |