-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add MatX, update ORT version, pybind11 version (#189)
* Add MatX * matx * better * skip whatever does not work * use 1.19.2 * e * improve error message * listdir * fix cmake * fix windows build
- Loading branch information
Showing
20 changed files
with
314 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# | ||
# initialization | ||
# | ||
# defines matx matx_SOURCE_DIR matx_BINARY_DIR | ||
|
||
# | ||
# matx | ||
# | ||
|
||
set(matx_TAG "v0.8.0") | ||
|
||
include(FetchContent) | ||
FetchContent_Declare( | ||
matx | ||
GIT_REPOSITORY https://github.com/NVIDIA/matx | ||
GIT_TAG ${matx_TAG}) | ||
|
||
FetchContent_MakeAvailable(matx) | ||
FetchContent_GetProperties(matx) | ||
|
||
set(matx_VERSION ${matx_TAG}) | ||
set(MATX_INCLUDE_DIR "${matx_SOURCE_DIR}/include") | ||
message(STATUS "matx_BINARY_DIR=${matx_BINARY_DIR}") | ||
message(STATUS "matx_SOURCE_DIR=${matx_SOURCE_DIR}") | ||
message(STATUS "MATX_INCLUDE_DIR=${MATX_INCLUDE_DIR}") | ||
message(STATUS "matx_VERSION=${matx_VERSION}") | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args( | ||
LocalMatX | ||
VERSION_VAR matx_VERSION | ||
REQUIRED_VARS matx_SOURCE_DIR matx_BINARY_DIR) |
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 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
Oops, something went wrong.