forked from VowpalWabbit/vowpal_wabbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: make lda optional with compile feature (VowpalWabbit#4555)
* build: make lda optional with compile feature * formatting * Create README * add to python vcpkg * dont add boost dep * try fix python * add comment --------- Co-authored-by: Eduardo Salinas <[email protected]>
- Loading branch information
1 parent
6ee7721
commit 8b9a750
Showing
10 changed files
with
76 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
boost_math - optional | ||
eigen - optional | ||
fmt | ||
rapidjson | ||
spdlog | ||
sse2neon - optional | ||
string-view-lite | ||
vcpkg | ||
zlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
{ | ||
"name": "demo", | ||
"version": "1.0.0", | ||
"builtin-baseline": "773516ecf6014d89cc69b11bb54605ad4be56694", | ||
"dependencies": [ "zlib","boost-python","python3","flatbuffers" ] | ||
} | ||
"name": "demo", | ||
"version": "1.0.0", | ||
"builtin-baseline": "773516ecf6014d89cc69b11bb54605ad4be56694", | ||
"dependencies": ["zlib", "boost-python", "python3", "flatbuffers"], | ||
"features": { | ||
"lda": { | ||
"description": "", | ||
"dependencies": [] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
{ | ||
"name": "demo", | ||
"version": "1.0.0", | ||
"builtin-baseline": "773516ecf6014d89cc69b11bb54605ad4be56694", | ||
"dependencies": [ "zlib","boost-python","python3","flatbuffers" ], | ||
"overrides": [ | ||
{ "name": "python3", "version-string": "3.10.2", "port-version": 1 } | ||
] | ||
} | ||
"name": "demo", | ||
"version": "1.0.0", | ||
"builtin-baseline": "773516ecf6014d89cc69b11bb54605ad4be56694", | ||
"dependencies": ["zlib", "boost-python", "python3", "flatbuffers"], | ||
"overrides": [ | ||
{ "name": "python3", "version-string": "3.10.2", "port-version": 1 } | ||
], | ||
"features": { | ||
"lda": { | ||
"description": "", | ||
"dependencies": [] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters