Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce Op Builder API #3328

Draft
wants to merge 3 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ docs/html
# JetBrains config directories (ignoring symlinks)
.idea/
cmake-build*/
build*/
#build*/

# Recommended location to install rbuild dependencies from README.md
depend*/
Expand Down
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ add_library(migraphx_all_targets INTERFACE)
add_subdirectory(api)
add_subdirectory(driver)
add_subdirectory(onnx)
add_subdirectory(op/builder)
add_subdirectory(tf)

if(MIGRAPHX_ENABLE_PYTHON)
Expand Down
2 changes: 1 addition & 1 deletion src/onnx/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ target_link_libraries(migraphx_onnx PRIVATE onnx-proto)
if(NOT WIN32)
target_link_libraries(migraphx_onnx PRIVATE "-Wl,--exclude-libs,ALL")
endif()
target_link_libraries(migraphx_onnx PUBLIC migraphx)
target_link_libraries(migraphx_onnx PUBLIC migraphx migraphx_builders)

rocm_install_targets(
PRIVATE
Expand Down
Loading
Loading