Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MindSpore
akg
提交
1c2f391d
A
akg
项目概览
MindSpore
/
akg
通知
58
Star
7
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
A
akg
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
1c2f391d
编写于
8月 19, 2020
作者:
L
looop5
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix dump code error when running gpu operators and set env MS_AKG_DUMP_CODE=ON
上级
60f105c9
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
30 addition
and
8 deletion
+30
-8
src/codegen/build_module.cc
src/codegen/build_module.cc
+29
-8
src/composite/util.h
src/composite/util.h
+1
-0
未找到文件。
src/codegen/build_module.cc
浏览文件 @
1c2f391d
...
@@ -23,6 +23,8 @@
...
@@ -23,6 +23,8 @@
#include <unordered_map>
#include <unordered_map>
#include <utility>
#include <utility>
#include <vector>
#include <vector>
#include <unistd.h>
#include <sys/stat.h>
#include "build_module.h"
#include "build_module.h"
#include "pass/expr_alg_simplify.h"
#include "pass/expr_alg_simplify.h"
...
@@ -1059,13 +1061,32 @@ BuildRst BuildToFunc(const Schedule &inputs, const Array<NodeRef> &in_args, cons
...
@@ -1059,13 +1061,32 @@ BuildRst BuildToFunc(const Schedule &inputs, const Array<NodeRef> &in_args, cons
}
}
namespace
{
namespace
{
void
CreateCce
(
const
std
::
string
&
code
,
const
std
::
string
&
kernel_name
)
{
void
CreateCode
(
const
std
::
string
&
code
,
const
std
::
string
&
kernel_name
,
const
std
::
string
&
target_name
)
{
std
::
string
file_name
=
kMsDavinciKernelPath
;
std
::
string
file_path
;
file_name
.
append
(
kernel_name
).
append
(
".cce"
);
std
::
string
file_suffix
;
std
::
ofstream
of
(
file_name
);
if
(
target_name
.
find
(
"cce"
)
!=
std
::
string
::
npos
)
{
CHECK
(
of
.
is_open
())
<<
"Failed to open "
<<
file_name
<<
" to dump cce."
;
file_path
=
std
::
string
(
kMsDavinciKernelPath
);
of
<<
code
<<
std
::
endl
;
file_suffix
=
".cce"
;
of
.
close
();
}
else
if
(
target_name
.
find
(
"cuda"
)
!=
std
::
string
::
npos
)
{
file_path
=
std
::
string
(
kMsGpuKernelPath
)
+
"_"
+
std
::
to_string
(
getpid
())
+
"/"
;
file_suffix
=
".cu"
;
}
if
(
file_path
.
empty
())
{
return
;
}
// Dump code to meta directory if it exists.
struct
stat
info
;
if
(
stat
(
file_path
.
c_str
(),
&
info
)
==
0
)
{
if
(
info
.
st_mode
&
S_IFDIR
)
{
std
::
string
file_name
=
file_path
+
kernel_name
+
file_suffix
;
std
::
ofstream
of
(
file_name
);
CHECK
(
of
.
is_open
())
<<
"Failed to open "
<<
file_name
<<
" to dump code."
;
of
<<
code
<<
std
::
endl
;
of
.
close
();
}
}
}
}
}
// namespace
}
// namespace
...
@@ -1115,7 +1136,7 @@ air::runtime::Module BuildToModule(const NodeRef &ref, const std::string &target
...
@@ -1115,7 +1136,7 @@ air::runtime::Module BuildToModule(const NodeRef &ref, const std::string &target
auto
mod0
=
mhost
->
imports
()[
0
];
auto
mod0
=
mhost
->
imports
()[
0
];
CHECK
(
mod0
.
defined
());
CHECK
(
mod0
.
defined
());
CreateC
ce
(
mod0
->
GetSource
(),
build_rst
->
kernel
_name
);
CreateC
ode
(
mod0
->
GetSource
(),
build_rst
->
kernel_name
,
target
_name
);
}
}
return
mhost
;
return
mhost
;
...
...
src/composite/util.h
浏览文件 @
1c2f391d
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
namespace
akg
{
namespace
akg
{
constexpr
auto
kMsDavinciKernelPath
=
"./kernel_meta/"
;
constexpr
auto
kMsDavinciKernelPath
=
"./kernel_meta/"
;
constexpr
auto
kMsGpuKernelPath
=
"./cuda_meta"
;
static
std
::
unordered_map
<
std
::
string
,
air
::
Type
>
type_mapping
=
{
static
std
::
unordered_map
<
std
::
string
,
air
::
Type
>
type_mapping
=
{
{
"float32"
,
air
::
Float
(
32
)},
{
"float16"
,
air
::
Float
(
16
)},
{
"int32"
,
air
::
Int
(
32
)},
{
"bool"
,
air
::
Bool
()}};
{
"float32"
,
air
::
Float
(
32
)},
{
"float16"
,
air
::
Float
(
16
)},
{
"int32"
,
air
::
Int
(
32
)},
{
"bool"
,
air
::
Bool
()}};
}
// namespace akg
}
// namespace akg
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录