-
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.
MIOpen carries a lot of deps and is a complicated project. This leaves a couple of the optional deps off just to get things going. Adds the following on the path to MIOpen: * base/half * math-libs/hipBLAS * math-libs/rocRAND * third-party/FunctionalPlus * third-party/boost (just atomics, filesystem, system as static PIC libraries) * third-party/eigen * third-party/frugally-deep * third-party/nlohmann-json Re-organized fetch_sources.py to allow controlling fetch of math-libs and ml-frameworks. Because we build with disaggregated libraries (vs glomming them all into one prefix directory), this fuzzed what seems to be CMake config errors in several of our libraries. I've patches around them vs fixing upstream for the moment. See ml-frameworks/pre_hook_MIOpen.cmake for TODOs.
- Loading branch information
1 parent
499900b
commit 2ffa8c2
Showing
23 changed files
with
421 additions
and
6 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 @@ | ||
../sources/half |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../sources/hipBLAS |
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 @@ | ||
list(APPEND CMAKE_MODULE_PATH "${THEROCK_SOURCE_DIR}/cmake") | ||
include(therock_rpath) | ||
|
||
therock_set_install_rpath( | ||
TARGETS | ||
hipblas | ||
PATHS | ||
. | ||
) |
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 @@ | ||
list(APPEND CMAKE_MODULE_PATH "${THEROCK_SOURCE_DIR}/cmake") | ||
include(therock_rpath) | ||
|
||
therock_set_install_rpath( | ||
TARGETS | ||
rocrand | ||
PATHS | ||
. | ||
) |
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 @@ | ||
../sources/rocRAND |
Oops, something went wrong.