Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
563a0d01
MegEngine
项目概览
MegEngine 天元
/
MegEngine
1 年多 前同步成功
通知
404
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看板
提交
563a0d01
编写于
9月 29, 2022
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(opencl/ion): support ion
GitOrigin-RevId: c9979476de2e7837ba385c9b2c2df303e7208338
上级
6d219827
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
17 addition
and
2 deletion
+17
-2
lite/CMakeLists.txt
lite/CMakeLists.txt
+2
-2
src/core/include/megbrain/comp_node.h
src/core/include/megbrain/comp_node.h
+15
-0
未找到文件。
lite/CMakeLists.txt
浏览文件 @
563a0d01
...
...
@@ -105,7 +105,7 @@ if(NOT WIN32)
add_library
(
lite_static_all_in_one STATIC
$<TARGET_OBJECTS:flatbuffers> $<TARGET_OBJECTS:cpuinfo> $<TARGET_OBJECTS:clog>
$<TARGET_OBJECTS:OpenCL> $<TARGET_OBJECTS:lite_static>
)
$<TARGET_OBJECTS:OpenCL> $<TARGET_OBJECTS:lite_static>
$<TARGET_OBJECTS:LIBION>
)
elseif
(
MGE_ENABLE_CPUINFO AND NOT MGE_WITH_OPENCL
)
add_library
(
lite_static_all_in_one STATIC
...
...
@@ -115,7 +115,7 @@ if(NOT WIN32)
add_library
(
lite_static_all_in_one STATIC
$<TARGET_OBJECTS:flatbuffers> $<TARGET_OBJECTS:OpenCL>
$<TARGET_OBJECTS:lite_static>
)
$<TARGET_OBJECTS:lite_static>
$<TARGET_OBJECTS:LIBION>
)
else
()
add_library
(
lite_static_all_in_one STATIC $<TARGET_OBJECTS:flatbuffers>
$<TARGET_OBJECTS:lite_static>
)
...
...
src/core/include/megbrain/comp_node.h
浏览文件 @
563a0d01
...
...
@@ -324,6 +324,21 @@ public:
/*!
* \brief get logical address by host ptr
*/
//! api for register memory info, in order compat old user code, do not change the
//! api name, this api have different behavior for with different OpenCL memory
//! type.
//! Map/UnMap: use to get logical_addr of cl_mem alloc by MegEngine, which can
//! be reset to TensorND storage raw_ptr, NOTICE: Map/UnMap do not support cl_mem
//! not alloc from MegEngine.
//! SVM: in fact do nothing, just return ptr same with args.
//! ION: this case support two case:
//! ION case one: IonHostPtr info is alloc by MegEngine, this case, args ptr is
//! tensor raw_ptr, and args size is tensor size in bytes, api will return
//! IonHostPtr ptr, then user can use it out of EegEngine.
//! ION case two: use to register user IonHostPtr info, args ptr is IonHostPtr, size
//! is IonHostPtr->ion_hostptr size_in_bytes, MegEngine will register it into DNN,
//! then just return IonHostPtr->ion_hostptr, which can be reset to TensorND storage
//! raw_ptr.
MGE_WIN_DECLSPEC_FUC
void
*
get_logical_addr_by_host_ptr
(
void
*
ptr
,
size_t
size
);
/* =================== synchronization ======================== */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录