vcpkg/ports/gloo/vcpkg.json

40 lines
856 B
JSON
Raw Normal View History

2020-12-29 04:25:50 +08:00
{
"name": "gloo",
"version": "20201203",
"port-version": 2,
2020-12-29 04:25:50 +08:00
"description": "Collective communications library with various primitives for multi-machine training.",
"homepage": "https://github.com/facebookincubator/gloo",
"supports": "x64 & linux",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
2020-12-29 04:25:50 +08:00
"features": {
"cuda": {
"description": "for CUDA aware algorithms",
"dependencies": [
"cuda",
"nccl"
]
},
"mpi": {
"description": "for coordinating machine rendezvous through MPI",
"dependencies": [
"openmpi"
]
},
"redis": {
"description": "for coordinating machine rendezvous through Redis",
"dependencies": [
"hiredis"
]
}
}
}