-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Treelite v4 specification (#524)
* Bring in treelite-ng * Apply linting to CMake files * Fix CMakeLists.txt * Fix C++ app example * Fix build on MacOS * Fix build on MacOS * Fix scripts * Use MacOS 10.15+ * Fix test on MacOS: size_t != uint64_t on MacOS * Install latest XGBoost in CI * Don't install if TEST_COVERAGE * Don't install fmt * Don't use O0 for test coverage * Use latest MacOS and Windows workers * Require MSVC 2022 * Use latest Windows * Ensure that we use positive int for seeding rng * Fix build with USE_OPENMP=OFF * Fix flaky test * Add back LightGBM * Install XGBoost from the source * Fix tests
- Loading branch information
Showing
175 changed files
with
9,172 additions
and
43,666 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
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
This file was deleted.
Oops, something went wrong.
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,11 +1,12 @@ | ||
/*! | ||
* Copyright (c) 2021 by Contributors | ||
* Copyright (c) 2023 by Contributors | ||
*/ | ||
#ifndef TREELITE_VERSION_CONFIG_H_ | ||
#define TREELITE_VERSION_CONFIG_H_ | ||
#ifndef TREELITE_VERSION_H_ | ||
#define TREELITE_VERSION_H_ | ||
|
||
#define TREELITE_VER_MAJOR @treelite_VERSION_MAJOR@ | ||
#define TREELITE_VER_MINOR @treelite_VERSION_MINOR@ | ||
#define TREELITE_VER_PATCH @treelite_VERSION_PATCH@ | ||
#define TREELITE_VERSION_STR "@treelite_VERSION_MAJOR@.@treelite_VERSION_MINOR@.@treelite_VERSION_PATCH@" | ||
|
||
#endif // TREELITE_VERSION_CONFIG_H_ | ||
#endif // TREELITE_VERSION_H_ |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.