diff options
Diffstat (limited to 'vcpkg/ports/lightgbm/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/lightgbm/vcpkg.json | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/vcpkg/ports/lightgbm/vcpkg.json b/vcpkg/ports/lightgbm/vcpkg.json new file mode 100644 index 0000000..0e8f3a7 --- /dev/null +++ b/vcpkg/ports/lightgbm/vcpkg.json @@ -0,0 +1,35 @@ +{ + "name": "lightgbm", + "version": "4.5.0", + "description": [ + "A fast, distributed, high performance gradient boosting (GBT, GBDT, GBRT, GBM or MART) framework based on decision tree algorithms.", + "Designed to be distributed and efficient and comes with faster training speeds, higher efficiency, lower memory usage and support of parallel, distributed, and GPU learning." + ], + "homepage": "https://github.com/microsoft/LightGBM", + "license": "Apache-2.0", + "supports": "!android & !osx & !uwp", + "dependencies": [ + "eigen3", + "fast-double-parser", + "fmt", + { + "name": "vcpkg-cmake", + "host": true + } + ], + "default-features": [ + "openmp" + ], + "features": { + "gpu": { + "description": "GPU support using Boost.Compute", + "dependencies": [ + "boost-compute", + "opencl" + ] + }, + "openmp": { + "description": "Support for multi-threading using OpenMP" + } + } +} |