Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
tilelang
Commits
2bc45bc3
Unverified
Commit
2bc45bc3
authored
Nov 10, 2025
by
Yichen Yan
Committed by
GitHub
Nov 10, 2025
Browse files
[Build] Explicitly add `libtvm` as a dep of `libtilelang` (#1215)
parent
d5fda276
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
CMakeLists.txt
CMakeLists.txt
+1
-5
No files found.
CMakeLists.txt
View file @
2bc45bc3
...
@@ -169,12 +169,8 @@ target_include_directories(tilelang_objs PRIVATE ${TILE_LANG_INCLUDES})
...
@@ -169,12 +169,8 @@ target_include_directories(tilelang_objs PRIVATE ${TILE_LANG_INCLUDES})
add_library
(
tilelang SHARED $<TARGET_OBJECTS:tilelang_objs>
)
add_library
(
tilelang SHARED $<TARGET_OBJECTS:tilelang_objs>
)
add_library
(
tilelang_module SHARED $<TARGET_OBJECTS:tilelang_objs>
)
add_library
(
tilelang_module SHARED $<TARGET_OBJECTS:tilelang_objs>
)
target_link_libraries
(
tilelang PUBLIC tvm_runtime
)
target_link_libraries
(
tilelang PUBLIC tvm_runtime
tvm
)
target_link_libraries
(
tilelang_module PUBLIC tvm
)
target_link_libraries
(
tilelang_module PUBLIC tvm
)
if
(
APPLE
)
# FIXME: libtilelang should only link against tvm runtime
target_link_libraries
(
tilelang PUBLIC tvm
)
endif
()
# Build cython extension
# Build cython extension
find_package
(
Python REQUIRED COMPONENTS Interpreter Development.Module
${
SKBUILD_SABI_COMPONENT
}
)
find_package
(
Python REQUIRED COMPONENTS Interpreter Development.Module
${
SKBUILD_SABI_COMPONENT
}
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment