Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
588a645b
MegEngine
项目概览
MegEngine 天元
/
MegEngine
大约 1 年 前同步成功
通知
399
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
588a645b
编写于
6月 10, 2022
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(dnn/opencl): add binary interface for opencl algo and kernel cache
GitOrigin-RevId: 3c084fafd9f999ab2442fe6b87f80b919bd76fad
上级
1192a9a6
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
7 addition
and
4 deletion
+7
-4
lite/load_and_run/src/options/device_options.cpp
lite/load_and_run/src/options/device_options.cpp
+4
-0
lite/load_and_run/src/options/device_options.h
lite/load_and_run/src/options/device_options.h
+1
-2
lite/load_and_run/src/strategys/strategy_fitting.cpp
lite/load_and_run/src/strategys/strategy_fitting.cpp
+2
-2
未找到文件。
lite/load_and_run/src/options/device_options.cpp
浏览文件 @
588a645b
...
...
@@ -155,6 +155,8 @@ XPUDeviceOption::XPUDeviceOption() {
thread_cnt
==
thread_num
,
"core ids number should be same with thread number set before"
);
enable_set_core_ids
=
true
;
}
else
{
enable_set_core_ids
=
false
;
}
m_option
=
{
...
...
@@ -237,6 +239,8 @@ void XPUDeviceOption::config_model(
thread_cnt
==
thread_num
,
"core ids number should be same with thread number set before"
);
enable_set_core_ids
=
true
;
}
else
{
enable_set_core_ids
=
false
;
}
CONFIG_MODEL_FUN
;
...
...
lite/load_and_run/src/options/device_options.h
浏览文件 @
588a645b
...
...
@@ -17,8 +17,7 @@ class XPUDeviceOption final : public OptionBase {
public:
static
bool
is_valid
();
static
std
::
shared_ptr
<
OptionBase
>
create_option
();
void
config_model
(
RuntimeParam
&
runtime_param
,
std
::
shared_ptr
<
ModelBase
>
model
)
override
;
void
config_model
(
RuntimeParam
&
,
std
::
shared_ptr
<
ModelBase
>
)
override
;
std
::
string
option_name
()
const
override
{
return
m_option_name
;
};
static
void
set_valid
(
bool
val
)
{
m_valid
=
val
;
}
...
...
lite/load_and_run/src/strategys/strategy_fitting.cpp
浏览文件 @
588a645b
...
...
@@ -160,6 +160,7 @@ void OptionsTimeProfiler::profile_with_given_options(
mgb
::
RealTimer
timer
;
auto
stage_config_model
=
[
&
]()
{
for
(
auto
&
option
:
*
given_options
)
{
mgb_assert
(
option
.
second
,
"invalid option %s
\n
"
,
option
.
first
.
c_str
());
option
.
second
->
config_model
(
runtime_param
,
model
);
}
};
...
...
@@ -456,7 +457,6 @@ void FittingStrategy::dump_best_options_with_model() {
}
model
->
run_model
();
model
->
wait
();
std
::
vector
<
uint8_t
>
model_data
=
model
->
get_model_data
();
mgb_log_warn
(
"model_data size=%zu"
,
model_data
.
size
());
mgb_log_warn
(
"json_info size=%zu"
,
json_info
.
size
());
...
...
@@ -465,7 +465,7 @@ void FittingStrategy::dump_best_options_with_model() {
lite
::
ModelPacker
packer
(
model_data
,
m_dumped_model
,
json_info
,
info_algo_policy_data
,
info_binary_cache_data
);
packer
.
set_header
();
packer
.
set_header
(
"NONE"
,
"NONE"
,
info_binary_cache_data
.
empty
()
);
packer
.
pack_model
();
}
///////////////////////// AutoCleanFile///////////////////////////
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录