Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
99a94bfd
M
mindspore
项目概览
magicwindyyd
/
mindspore
与 Fork 源项目一致
Fork自
MindSpore / mindspore
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindspore
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
99a94bfd
编写于
8月 24, 2020
作者:
Z
zhoufeng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
clean static check
Signed-off-by:
N
zhoufeng
<
zhoufeng54@huawei.com
>
上级
0f4e6d73
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
3 addition
and
5 deletion
+3
-5
mindspore/ccsrc/backend/kernel_compiler/tbe/tbe_kernel_select/tbe_kernel_select.cc
...ernel_compiler/tbe/tbe_kernel_select/tbe_kernel_select.cc
+0
-1
mindspore/ccsrc/runtime/device/ascend/dump/data_dumper.cc
mindspore/ccsrc/runtime/device/ascend/dump/data_dumper.cc
+2
-1
mindspore/ccsrc/runtime/device/ascend/dump/data_dumper.h
mindspore/ccsrc/runtime/device/ascend/dump/data_dumper.h
+1
-1
mindspore/ccsrc/transform/graph_ir/convert.cc
mindspore/ccsrc/transform/graph_ir/convert.cc
+0
-1
mindspore/ccsrc/transform/graph_ir/op_adapter_map.h
mindspore/ccsrc/transform/graph_ir/op_adapter_map.h
+0
-1
未找到文件。
mindspore/ccsrc/backend/kernel_compiler/tbe/tbe_kernel_select/tbe_kernel_select.cc
浏览文件 @
99a94bfd
...
...
@@ -364,7 +364,6 @@ bool TbeKernelSelect::GenBuilderItem(bool is_input, size_t kernel_build_info_ind
}
dynamic_input_index
++
;
real_io_tensor_index
+=
dynamic_input_size
;
}
else
{
if
(
ios_info
.
size
()
!=
1
)
{
MS_LOG
(
EXCEPTION
)
<<
"if output is dynamic, so output must has one output."
;
...
...
mindspore/ccsrc/runtime/device/ascend/dump/data_dumper.cc
浏览文件 @
99a94bfd
...
...
@@ -18,6 +18,7 @@
#include <map>
#include <memory>
#include <string>
#include <algorithm>
#include "utility"
#include "backend/session/anf_runtime_algorithm.h"
#include "runtime/mem.h"
...
...
@@ -226,7 +227,7 @@ void DataDumper::ConstructDumpTask(NotNull<const CNodePtr &> kernel, NotNull<aic
DumpKernelInput
(
kernel
,
args
,
dump_task
);
}
void
DataDumper
::
SetOpDebugMappingInfo
(
NotNull
<
aicpu
::
dump
::
OpMappingInfo
*>
dump_info
)
const
{
void
DataDumper
::
SetOpDebugMappingInfo
(
const
NotNull
<
aicpu
::
dump
::
OpMappingInfo
*>
dump_info
)
const
{
MS_LOG
(
INFO
)
<<
"[DataDump] Add op debug info to OpMappingInfo, task id = "
<<
debug_task_id_
<<
", stream id = "
<<
debug_stream_id_
;
aicpu
::
dump
::
Task
task
;
...
...
mindspore/ccsrc/runtime/device/ascend/dump/data_dumper.h
浏览文件 @
99a94bfd
...
...
@@ -61,7 +61,7 @@ class DataDumper {
void
ReleaseDevMem
(
void
**
ptr
)
const
;
bool
KernelNeedDump
(
const
CNodePtr
&
kernel
)
const
;
void
SetOpMappingInfo
(
NotNull
<
aicpu
::
dump
::
OpMappingInfo
*>
dump_info
)
const
;
void
SetOpDebugMappingInfo
(
NotNull
<
aicpu
::
dump
::
OpMappingInfo
*>
dump_info
)
const
;
void
SetOpDebugMappingInfo
(
const
NotNull
<
aicpu
::
dump
::
OpMappingInfo
*>
dump_info
)
const
;
void
ConstructDumpTask
(
NotNull
<
const
CNodePtr
&>
kernel
,
NotNull
<
aicpu
::
dump
::
Task
*>
dump_task
)
const
;
std
::
function
<
void
*
()
>
model_handle_
;
...
...
mindspore/ccsrc/transform/graph_ir/convert.cc
浏览文件 @
99a94bfd
...
...
@@ -1705,6 +1705,5 @@ void DfGraphConvertor::RegisterAdapter(const std::string &name, OpAdapterPtr adp
void
DfGraphConvertor
::
RegisterAdapter
(
const
std
::
string
&
name
,
OpAdapterPtr
train_adpt
,
OpAdapterPtr
infer_adpt
)
{
OpAdapterMap
::
get
()[
name
]
=
std
::
make_shared
<
OpAdapterDesc
>
(
train_adpt
,
infer_adpt
);
}
}
// namespace transform
}
// namespace mindspore
mindspore/ccsrc/transform/graph_ir/op_adapter_map.h
浏览文件 @
99a94bfd
...
...
@@ -202,7 +202,6 @@ class OpAdapterMap {
private:
static
std
::
unordered_map
<
std
::
string
,
OpAdapterDescPtr
>
adpt_map_
;
};
}
// namespace transform
}
// namespace mindspore
#endif // MINDSPORE_CCSRC_TRANSFORM_GRAPH_IR_OP_ADAPTER_MAP_H_
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录