Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
b5ec9ca0
P
Paddle
项目概览
机器未来
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
b5ec9ca0
编写于
5月 24, 2022
作者:
A
Allen Guo
提交者:
GitHub
5月 24, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
upgrade to sdk2.5.1 (#42950)
* upgrade to sdk2.5.1
上级
d4cdfa55
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
17 addition
and
11 deletion
+17
-11
paddle/fluid/platform/device/ipu/ipu_backend.cc
paddle/fluid/platform/device/ipu/ipu_backend.cc
+1
-5
paddle/fluid/platform/device/ipu/ipu_executor.cc
paddle/fluid/platform/device/ipu/ipu_executor.cc
+7
-5
paddle/fluid/platform/device/ipu/ipu_executor.h
paddle/fluid/platform/device/ipu/ipu_executor.h
+3
-0
python/paddle/fluid/tests/unittests/ipu/op_test_ipu.py
python/paddle/fluid/tests/unittests/ipu/op_test_ipu.py
+5
-0
tools/dockerfile/Dockerfile.ipu
tools/dockerfile/Dockerfile.ipu
+1
-1
未找到文件。
paddle/fluid/platform/device/ipu/ipu_backend.cc
浏览文件 @
b5ec9ca0
...
...
@@ -74,11 +74,7 @@ void IpuBackend::WeightsToHost() { executor_->WeightsToHost(); }
void
IpuBackend
::
Detach
()
{
executor_
->
Detach
();
}
void
IpuBackend
::
Reset
()
{
executor_
->
Detach
();
compiler_
.
reset
();
executor_
.
reset
();
}
void
IpuBackend
::
Reset
()
{
executor_
->
Reset
();
}
void
IpuBackend
::
SetScope
(
const
framework
::
Scope
&
scope
)
{
scope_
=
&
scope
;
...
...
paddle/fluid/platform/device/ipu/ipu_executor.cc
浏览文件 @
b5ec9ca0
...
...
@@ -88,11 +88,7 @@ class PdIArray final : public popart::IArray {
}
// namespace
Executor
::~
Executor
()
{
Detach
();
session_
.
reset
();
executor_resources_
.
reset
();
}
Executor
::~
Executor
()
{
Reset
();
}
void
Executor
::
Prepare
(
const
std
::
string
&
proto
)
{
VLOG
(
10
)
<<
"enter Executor::Prepare"
;
...
...
@@ -299,6 +295,12 @@ void Executor::Detach() {
}
}
void
Executor
::
Reset
()
{
Detach
();
session_
.
reset
();
executor_resources_
.
reset
();
}
void
Executor
::
SetWeightsIO
()
{
auto
opt_type
=
compiler_resources_
->
optimizer_type
;
VLOG
(
10
)
<<
"SetWeightsIO for "
<<
opt_type
;
...
...
paddle/fluid/platform/device/ipu/ipu_executor.h
浏览文件 @
b5ec9ca0
...
...
@@ -63,6 +63,9 @@ class Executor {
// Detach IPU
void
Detach
();
// Reset session
void
Reset
();
// Scope
void
SetScope
(
const
Scope
*
scope
)
{
scope_
=
scope
;
}
...
...
python/paddle/fluid/tests/unittests/ipu/op_test_ipu.py
浏览文件 @
b5ec9ca0
...
...
@@ -128,6 +128,11 @@ class IPUOpTest(IPUTest):
cls
.
fetch_list
:
List
[
str
]
=
None
cls
.
output_dict
:
Optional
[
Dict
]
=
{}
def
tearDown
(
self
):
# Manual reset when using ipumodel
if
self
.
use_ipumodel
():
paddle
.
framework
.
core
.
IpuBackend
.
get_instance
().
reset
()
@
property
def
fp16_enabled
(
self
):
return
True
...
...
tools/dockerfile/Dockerfile.ipu
浏览文件 @
b5ec9ca0
...
...
@@ -6,7 +6,7 @@
# run a container
# docker run --ulimit memlock=-1:-1 --net=host --cap-add=IPC_LOCK --device=/dev/infiniband/ --ipc=host --rm -it paddlepaddle/paddle:latest-dev-ipu bash
FROM graphcore/poplar
-extbaidu:2.5.0-ubuntu-18.04-20220407
FROM graphcore/poplar
:2.5.1
MAINTAINER PaddlePaddle Authors <paddle-dev@baidu.com>
# ENV variables
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录