This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
Repositories
Datasets
Forum
实训
竞赛
大数据
应用
Register
Sign In
OpenI
/
MegEngine
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
31
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
fix(mgb/build): do not install cutlass
GitOrigin-RevId:
ba8b047659
tags/v1.0.0-rc1
Megvii Engine Team
4 years ago
parent
c5e433b568
commit
59dcd3b7f3
2 changed files
with
1 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-1
dnn/CMakeLists.txt
+1
-1
dnn/src/CMakeLists.txt
+ 0
- 1
dnn/CMakeLists.txt
View File
@@ -62,7 +62,6 @@ if(MGE_WITH_CUDA)
target_include_directories(cutlass
INTERFACE
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/third_party/cutlass/include>)
install(TARGETS cutlass EXPORT ${MGE_EXPORT_TARGETS})
endif()
if(MGE_WITH_TEST)
+ 1
- 1
dnn/src/CMakeLists.txt
View File
@@ -130,7 +130,7 @@ add_library(megdnn EXCLUDE_FROM_ALL OBJECT ${SOURCES})
target_link_libraries(megdnn PUBLIC opr_param_defs)
if(MGE_WITH_CUDA)
target_link_libraries(megdnn P
UBLIC cutlass
)
target_link_libraries(megdnn P
RIVATE $<BUILD_INTERFACE:cutlass>
)
endif()
if(MGE_WITH_ROCM)
Write
Preview
Loading…
Cancel
Save