vcpkg/ports/lightgbm/vcpkg.json
2024-10-11 10:30:44 -04:00

36 lines
947 B
JSON

{
"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"
}
}
}