vcpkg/ports/flashlight-cpu/vcpkg.json
Jacob Kahn 58bf44e8b0
[flashlight-cpu] New port (#15514)
* [flashlight-cpu] New port

* Update ports/flashlight-cpu/portfile.cmake

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Update ports/flashlight-cpu/portfile.cmake

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Update ports/flashlight-cpu/portfile.cmake

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Update commits and port versions, comments

* Update ports/flashlight-cpu/portfile.cmake

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Tweaks to feature options for CUDA port

* Update ports/flashlight-cuda/portfile.cmake

* Update ports/flashlight-cuda/vcpkg.json

* one more commit bump

* Update port_versions

* Add flashlight-cpu.json in port_versions

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
2021-01-16 19:42:15 -08:00

82 lines
1.6 KiB
JSON

{
"name": "flashlight-cpu",
"version-string": "20210111",
"description": "A C++ standalone library for machine learning. CPU backend.",
"homepage": "https://github.com/facebookresearch/flashlight",
"supports": "!(windows | osx)",
"default-features": [
"fl"
],
"features": {
"asr": {
"description": "flashlight asr app",
"dependencies": [
{
"name": "flashlight-cpu",
"features": [
"fl",
"lib"
]
},
"gflags",
"libsndfile"
]
},
"fl": {
"description": "flashlight core autograd and neural net library",
"dependencies": [
{
"name": "arrayfire",
"features": [
"cpu"
]
},
"cereal",
{
"name": "gloo",
"features": [
"mpi"
]
},
"onednn",
"openmpi",
"stb"
]
},
"imgclass": {
"description": "flashlight image classification app",
"dependencies": [
{
"name": "flashlight-cpu",
"features": [
"fl",
"lib"
]
},
"gflags"
]
},
"lib": {
"description": "flashlight libraries",
"dependencies": [
"fftw3",
"intel-mkl",
"kenlm"
]
},
"lm": {
"description": "flashlight lm app",
"dependencies": [
{
"name": "flashlight-cpu",
"features": [
"fl",
"lib"
]
},
"gflags"
]
}
}
}