Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
42dd0f1b
P
Paddle
项目概览
Crayon鑫
/
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看板
未验证
提交
42dd0f1b
编写于
6月 07, 2022
作者:
Q
qipengh
提交者:
GitHub
6月 07, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[MLU]support cast double type (#43058)
* [MLU]support cast double type * [MLU]fix cast test
上级
0fdb3ced
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
23 addition
and
31 deletion
+23
-31
paddle/fluid/operators/cast_op_mlu.cc
paddle/fluid/operators/cast_op_mlu.cc
+1
-31
paddle/fluid/operators/mlu/mlu_baseop.h
paddle/fluid/operators/mlu/mlu_baseop.h
+3
-0
python/paddle/fluid/tests/unittests/mlu/test_cast_op_mlu.py
python/paddle/fluid/tests/unittests/mlu/test_cast_op_mlu.py
+19
-0
未找到文件。
paddle/fluid/operators/cast_op_mlu.cc
浏览文件 @
42dd0f1b
...
...
@@ -44,37 +44,7 @@ class CastMLUKernel : public framework::OpKernel<T> {
framework
::
DataTypeToString
(
src_type
),
framework
::
DataTypeToString
(
dst_type
)));
switch
(
dst_type
)
{
case
VT
::
FP32
:
output
->
mutable_data
<
float
>
(
place
);
break
;
case
VT
::
FP16
:
output
->
mutable_data
<
paddle
::
platform
::
float16
>
(
place
);
break
;
case
VT
::
INT32
:
output
->
mutable_data
<
int32_t
>
(
place
);
break
;
case
VT
::
INT16
:
output
->
mutable_data
<
int16_t
>
(
place
);
break
;
case
VT
::
INT8
:
output
->
mutable_data
<
int8_t
>
(
place
);
break
;
case
VT
::
UINT8
:
output
->
mutable_data
<
uint8_t
>
(
place
);
break
;
case
VT
::
BOOL
:
output
->
mutable_data
<
bool
>
(
place
);
break
;
case
VT
::
INT64
:
output
->
mutable_data
<
int64_t
>
(
place
);
break
;
default:
PADDLE_THROW
(
platform
::
errors
::
Unavailable
(
"Not supported cast %d -> %d"
,
framework
::
DataTypeToString
(
src_type
),
framework
::
DataTypeToString
(
dst_type
)));
}
output
->
mutable_data
(
place
,
framework
::
TransToPhiDataType
(
dst_type
));
MLUCnnlTensorDesc
input_desc
(
*
input
);
MLUCnnlTensorDesc
output_desc
(
*
output
);
...
...
paddle/fluid/operators/mlu/mlu_baseop.h
浏览文件 @
42dd0f1b
...
...
@@ -75,6 +75,9 @@ inline cnnlDataType_t ToCnnlDataType(
case
DataType
::
FLOAT32
:
type
=
CNNL_DTYPE_FLOAT
;
break
;
case
DataType
::
FLOAT64
:
type
=
CNNL_DTYPE_DOUBLE
;
break
;
case
DataType
::
INT8
:
type
=
CNNL_DTYPE_INT8
;
break
;
...
...
python/paddle/fluid/tests/unittests/mlu/test_cast_op_mlu.py
浏览文件 @
42dd0f1b
...
...
@@ -61,6 +61,25 @@ class TestCastOpFp16ToFp32(OpTest):
self
.
op_type
=
'cast'
self
.
place
=
paddle
.
device
.
MLUPlace
(
0
)
self
.
__class__
.
use_mlu
=
True
self
.
__class__
.
no_need_check_grad
=
True
def
test_check_output
(
self
):
self
.
check_output_with_place
(
self
.
place
,
atol
=
1e-3
)
class
TestCastOpFp32ToFp64
(
OpTest
):
def
setUp
(
self
):
ipt
=
np
.
random
.
random
(
size
=
[
10
,
10
])
self
.
inputs
=
{
'X'
:
ipt
.
astype
(
'float32'
)}
self
.
outputs
=
{
'Out'
:
ipt
.
astype
(
'float64'
)}
self
.
attrs
=
{
'in_dtype'
:
int
(
core
.
VarDesc
.
VarType
.
FP32
),
'out_dtype'
:
int
(
core
.
VarDesc
.
VarType
.
FP64
)
}
self
.
op_type
=
'cast'
self
.
place
=
paddle
.
device
.
MLUPlace
(
0
)
self
.
__class__
.
use_mlu
=
True
self
.
__class__
.
no_need_check_grad
=
True
def
test_check_output
(
self
):
self
.
check_output_with_place
(
self
.
place
,
atol
=
1e-3
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录