Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
wux_labs
Tensorflow
提交
e20f8814
T
Tensorflow
项目概览
wux_labs
/
Tensorflow
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Tensorflow
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
e20f8814
编写于
10月 13, 2022
作者:
A
Anlun Xu
提交者:
TensorFlower Gardener
10月 13, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[xla:runtime] Add CpuCompiler::Export
PiperOrigin-RevId: 481007346
上级
53fa1d27
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
55 addition
and
0 deletion
+55
-0
tensorflow/compiler/xla/service/cpu/cpu_compiler.cc
tensorflow/compiler/xla/service/cpu/cpu_compiler.cc
+19
-0
tensorflow/compiler/xla/service/cpu/cpu_compiler.h
tensorflow/compiler/xla/service/cpu/cpu_compiler.h
+3
-0
tensorflow/compiler/xla/service/cpu/cpu_executable.h
tensorflow/compiler/xla/service/cpu/cpu_executable.h
+33
-0
未找到文件。
tensorflow/compiler/xla/service/cpu/cpu_compiler.cc
浏览文件 @
e20f8814
...
...
@@ -1770,6 +1770,25 @@ HloCostAnalysis::ShapeSizeFunction CpuCompiler::ShapeSizeBytesFunction() const {
return
CpuExecutable
::
ShapeSizeBytes
;
}
StatusOr
<
std
::
unique_ptr
<
AotCompilationResult
>>
CpuCompiler
::
Export
(
Executable
*
executable
)
const
{
auto
*
cpu_executable
=
tensorflow
::
down_cast
<
CpuExecutable
*>
(
executable
);
if
(
!
cpu_executable
)
return
Internal
(
"Could not downcast Executable to CpuExecutable"
);
HloModuleProto
module_proto
=
cpu_executable
->
module
().
ToProto
();
TF_ASSIGN_OR_RETURN
(
std
::
string
obj_file
,
cpu_executable
->
GetObjFile
());
TF_ASSIGN_OR_RETURN
(
std
::
string
mlir_module
,
cpu_executable
->
GetMlirModule
());
TF_ASSIGN_OR_RETURN
(
XlaFrameworkMapping
xla_framework_mapping
,
cpu_executable
->
GetXlaFrameworkMapping
());
std
::
unique_ptr
<
AotCompilationResult
>
result
=
std
::
make_unique
<
CpuXlaRuntimeAotCompilationResult
>
(
module_proto
,
obj_file
,
mlir_module
,
cpu_executable
->
buffer_assignment
(),
xla_framework_mapping
);
return
result
;
}
}
// namespace cpu
}
// namespace xla
...
...
tensorflow/compiler/xla/service/cpu/cpu_compiler.h
浏览文件 @
e20f8814
...
...
@@ -191,6 +191,9 @@ class CpuCompiler : public LLVMCompiler {
HloCostAnalysis
::
ShapeSizeFunction
ShapeSizeBytesFunction
()
const
override
;
StatusOr
<
std
::
unique_ptr
<
AotCompilationResult
>>
Export
(
Executable
*
executable
)
const
override
;
private:
// Initialize the LLVM target.
static
void
InitializeLLVMTarget
();
...
...
tensorflow/compiler/xla/service/cpu/cpu_executable.h
浏览文件 @
e20f8814
...
...
@@ -68,6 +68,24 @@ class XlaRuntimeCpuExecutable {
return
*
default_executable_
;
}
StatusOr
<
std
::
string
>
GetObjFile
()
const
{
std
::
unique_ptr
<
llvm
::
MemoryBuffer
>
obj_file
=
jit_executable_
->
DefaultExecutable
()
->
obj_file
();
if
(
!
obj_file
)
return
InternalError
(
"XlaRuntimeCpuExecutable didn't save the obj file"
);
std
::
string
data
(
obj_file
->
getBuffer
().
data
(),
obj_file
->
getBuffer
().
size
());
return
data
;
}
StatusOr
<
std
::
string
>
GetMlirModule
()
const
{
return
jit_executable_
->
mlir_module
();
}
XlaFrameworkMapping
xla_framework_mapping
()
{
return
xla_framework_mapping_
;
}
private:
std
::
unique_ptr
<
xla
::
runtime
::
JitExecutable
>
jit_executable_
;
xla
::
runtime
::
Executable
*
default_executable_
;
// owned by jit_executable_.
...
...
@@ -137,6 +155,21 @@ class CpuExecutable : public Executable {
int64_t
SizeOfGeneratedCodeInBytes
()
const
override
;
StatusOr
<
std
::
string
>
GetObjFile
()
const
{
if
(
!
IsXlaRuntime
())
return
InternalError
(
"Not an XLA Runtime executable"
);
return
xla_runtime_executable_
->
GetObjFile
();
}
StatusOr
<
std
::
string
>
GetMlirModule
()
const
{
if
(
!
IsXlaRuntime
())
return
InternalError
(
"Not an XLA Runtime executable"
);
return
xla_runtime_executable_
->
GetMlirModule
();
}
StatusOr
<
XlaFrameworkMapping
>
GetXlaFrameworkMapping
()
const
{
if
(
!
IsXlaRuntime
())
return
InternalError
(
"Not an XLA Runtime executable"
);
return
xla_runtime_executable_
->
xla_framework_mapping
();
}
private:
// Creates an array suitable for passing as the "buffer_table" argument to the
// JIT compiled function pointer.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录