Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
0f9dec68
MegEngine
项目概览
MegEngine 天元
/
MegEngine
1 年多 前同步成功
通知
403
Star
4705
Fork
582
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
MegEngine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
0f9dec68
编写于
7月 28, 2020
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(mge/imperative): name so lib
GitOrigin-RevId: ccfdfaf59fb56db4337cc0987046eccec69e7118
上级
618faf64
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
11 addition
and
11 deletion
+11
-11
CMakeLists.txt
CMakeLists.txt
+8
-8
dnn/CMakeLists.txt
dnn/CMakeLists.txt
+1
-1
dnn/scripts/gen_param_defs.py
dnn/scripts/gen_param_defs.py
+2
-2
未找到文件。
CMakeLists.txt
浏览文件 @
0f9dec68
...
...
@@ -236,14 +236,14 @@ if(MGE_WITH_TEST)
endif
()
option
(
MGE_WITH_DISTRIBUTED
"Build with distributed support"
ON
)
option
(
MGE_BUILD_
XXX
"Build _xxx.so instead of
mgb.so "
OFF
)
if
(
MGE_BUILD_
XXX
)
option
(
MGE_BUILD_
IMPERATIVE_RT
"Build _imperative_rt.so instead of _
mgb.so "
OFF
)
if
(
MGE_BUILD_
IMPERATIVE_RT
)
add_compile_definitions
(
MGB_ENABLE_IMPERATIVE_RUNTIME
)
set
(
CMAKE_CXX_STANDARD 17
)
endif
()
option
(
MGE_BUILD_SDK
"Build load_and_run"
ON
)
if
(
MGE_BUILD_
XXX
)
if
(
MGE_BUILD_
IMPERATIVE_RT
)
set
(
MGE_BUILD_SDK OFF
)
endif
()
...
...
@@ -561,7 +561,7 @@ endif()
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
${
MARCH
}
"
)
set
(
MGB_ENABLE_IMPERATIVE
${
MGE_BUILD_
XXX
}
)
set
(
MGB_ENABLE_IMPERATIVE
${
MGE_BUILD_
IMPERATIVE_RT
}
)
# Write out megbrain_build_config.h
# It defines macros needed by both megbrain and dnn
configure_file
(
src/megbrain_build_config.h.in
${
CMAKE_CURRENT_BINARY_DIR
}
/genfiles/megbrain_build_config.h
)
...
...
@@ -611,7 +611,7 @@ if(MGE_BUILD_SDK)
endif
()
if
(
MGE_WITH_PYTHON_MODULE
)
if
(
MGE_BUILD_
XXX
)
if
(
MGE_BUILD_
IMPERATIVE_RT
)
add_subdirectory
(
imperative
)
else
()
add_subdirectory
(
python_module
)
...
...
@@ -619,7 +619,7 @@ if(MGE_WITH_PYTHON_MODULE)
endif
()
if
(
MGE_WITH_TEST AND MGE_ENABLE_RTTI
)
if
(
NOT MGE_BUILD_
XXX
)
if
(
NOT MGE_BUILD_
IMPERATIVE_RT
)
add_subdirectory
(
test
)
endif
()
endif
()
...
...
@@ -645,7 +645,7 @@ if(TARGET mgb)
DEPENDS mgb
VERBATIM
)
elseif
(
TARGET _
xxx
)
elseif
(
TARGET _
imperative_rt
)
add_custom_target
(
develop
COMMAND
${
CMAKE_COMMAND
}
-E create_symlink
...
...
@@ -657,7 +657,7 @@ elseif(TARGET _xxx)
COMMAND
${
CMAKE_COMMAND
}
-E create_symlink
${
CMAKE_CURRENT_BINARY_DIR
}
/imperative/python/
${
PACKAGE_NAME
}
/core/ops/_internal/param_defs.py
${
CMAKE_CURRENT_SOURCE_DIR
}
/imperative/python/
${
PACKAGE_NAME
}
/core/ops/_internal/param_defs.py
DEPENDS _
xxx
DEPENDS _
imperative_rt
VERBATIM
)
endif
()
...
...
dnn/CMakeLists.txt
浏览文件 @
0f9dec68
...
...
@@ -59,7 +59,7 @@ install(TARGETS opr_param_defs EXPORT ${MGE_EXPORT_TARGETS})
if
(
MGE_WITH_TEST
)
if
(
NOT MGE_BUILD_
XXX
)
if
(
NOT MGE_BUILD_
IMPERATIVE_RT
)
add_subdirectory
(
test
)
endif
()
endif
()
...
...
dnn/scripts/gen_param_defs.py
浏览文件 @
0f9dec68
...
...
@@ -359,14 +359,14 @@ class PyWriter(IndentWriterBase):
else
:
self
.
_write
(
'def _as_dtype_num(dtype):
\n
'
' import megengine.core._
xxx
.utils as m
\n
'
' import megengine.core._
imperative_rt
.utils as m
\n
'
' return m._get_dtype_num(dtype)
\n
'
'
\n
'
)
self
.
_write
(
'def _as_serialized_dtype(dtype):
\n
'
' import megengine.core._
xxx
.utils as m
\n
'
' import megengine.core._
imperative_rt
.utils as m
\n
'
' return m._get_serialized_dtype(dtype)
\n
'
'
\n
'
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录