Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
affe25b7
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
affe25b7
编写于
6月 13, 2022
作者:
C
Chenxiao Niu
提交者:
GitHub
6月 13, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add mlu interp_v2(nearest&bilinear). (#43383)
上级
31ddaae2
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
528 addition
and
5 deletion
+528
-5
paddle/fluid/operators/interpolate_op.h
paddle/fluid/operators/interpolate_op.h
+4
-2
paddle/fluid/operators/interpolate_v2_op_mlu.cc
paddle/fluid/operators/interpolate_v2_op_mlu.cc
+488
-0
paddle/fluid/operators/mlu/mlu_baseop.cc
paddle/fluid/operators/mlu/mlu_baseop.cc
+3
-3
paddle/fluid/operators/mlu/mlu_baseop.h
paddle/fluid/operators/mlu/mlu_baseop.h
+33
-0
未找到文件。
paddle/fluid/operators/interpolate_op.h
浏览文件 @
affe25b7
...
@@ -38,7 +38,8 @@ inline std::vector<int> get_new_shape(
...
@@ -38,7 +38,8 @@ inline std::vector<int> get_new_shape(
"The shape of dimension tensor should be [1],"
"The shape of dimension tensor should be [1],"
"but received d%."
,
"but received d%."
,
tensor
->
dims
()));
tensor
->
dims
()));
if
(
platform
::
is_gpu_place
(
tensor
->
place
()))
{
if
(
platform
::
is_gpu_place
(
tensor
->
place
())
||
platform
::
is_mlu_place
(
tensor
->
place
()))
{
framework
::
Tensor
temp
;
framework
::
Tensor
temp
;
paddle
::
framework
::
TensorCopySync
(
*
tensor
,
platform
::
CPUPlace
(),
&
temp
);
paddle
::
framework
::
TensorCopySync
(
*
tensor
,
platform
::
CPUPlace
(),
&
temp
);
vec_new_shape
.
push_back
(
static_cast
<
int32_t
>
(
*
temp
.
data
<
int32_t
>
()));
vec_new_shape
.
push_back
(
static_cast
<
int32_t
>
(
*
temp
.
data
<
int32_t
>
()));
...
@@ -55,7 +56,8 @@ inline std::vector<T> get_new_data_from_tensor(const Tensor* new_data_tensor) {
...
@@ -55,7 +56,8 @@ inline std::vector<T> get_new_data_from_tensor(const Tensor* new_data_tensor) {
std
::
vector
<
T
>
vec_new_data
;
std
::
vector
<
T
>
vec_new_data
;
auto
*
new_data
=
new_data_tensor
->
data
<
T
>
();
auto
*
new_data
=
new_data_tensor
->
data
<
T
>
();
framework
::
Tensor
cpu_starts_tensor
;
framework
::
Tensor
cpu_starts_tensor
;
if
(
platform
::
is_gpu_place
(
new_data_tensor
->
place
()))
{
if
(
platform
::
is_gpu_place
(
new_data_tensor
->
place
())
||
platform
::
is_mlu_place
(
new_data_tensor
->
place
()))
{
paddle
::
framework
::
TensorCopySync
(
*
new_data_tensor
,
platform
::
CPUPlace
(),
paddle
::
framework
::
TensorCopySync
(
*
new_data_tensor
,
platform
::
CPUPlace
(),
&
cpu_starts_tensor
);
&
cpu_starts_tensor
);
new_data
=
cpu_starts_tensor
.
data
<
T
>
();
new_data
=
cpu_starts_tensor
.
data
<
T
>
();
...
...
paddle/fluid/operators/interpolate_v2_op_mlu.cc
0 → 100644
浏览文件 @
affe25b7
/* Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/operators/interpolate_op.h"
#include "paddle/fluid/operators/mlu/mlu_baseop.h"
#include "paddle/fluid/operators/utils.h"
namespace
paddle
{
namespace
operators
{
using
framework
::
Tensor
;
using
DataLayout
=
framework
::
DataLayout
;
inline
std
::
vector
<
int
>
get_new_shape_mlu
(
const
std
::
vector
<
const
Tensor
*>&
list_new_shape_tensor
)
{
// get tensor from
std
::
vector
<
int
>
vec_new_shape
;
for
(
size_t
i
=
0
;
i
<
list_new_shape_tensor
.
size
();
++
i
)
{
auto
tensor
=
list_new_shape_tensor
[
i
];
PADDLE_ENFORCE_EQ
(
tensor
->
dims
(),
phi
::
make_ddim
({
1
}),
platform
::
errors
::
InvalidArgument
(
"shape of dim tensor should be [1]"
));
framework
::
Tensor
temp
;
paddle
::
framework
::
TensorCopySync
(
*
tensor
,
platform
::
CPUPlace
(),
&
temp
);
vec_new_shape
.
push_back
(
static_cast
<
int32_t
>
(
*
temp
.
data
<
int32_t
>
()));
}
return
vec_new_shape
;
}
template
<
typename
T
>
class
InterpolateV2MLUKernel
:
public
framework
::
OpKernel
<
T
>
{
public:
void
Compute
(
const
framework
::
ExecutionContext
&
ctx
)
const
override
{
auto
&
dev_ctx
=
ctx
.
template
device_context
<
MLUDeviceContext
>();
auto
*
input
=
ctx
.
Input
<
Tensor
>
(
"X"
);
auto
*
output
=
ctx
.
Output
<
Tensor
>
(
"Out"
);
auto
input_dims
=
input
->
dims
();
PADDLE_ENFORCE_GE
(
input_dims
.
size
(),
4
,
platform
::
errors
::
External
(
"MLU Interpolate kernel supports input "
"range greater or equal than 4."
));
PADDLE_ENFORCE_LE
(
input_dims
.
size
(),
5
,
platform
::
errors
::
External
(
"MLU Interpolate kernel supports input "
"range less or equal than 5. "
));
const
std
::
string
data_layout_str
=
ctx
.
Attr
<
std
::
string
>
(
"data_layout"
);
const
DataLayout
data_layout
=
framework
::
StringToDataLayout
(
data_layout_str
);
int
n
,
c
,
in_d
,
in_h
,
in_w
;
ExtractNCDWH
(
input_dims
,
data_layout
,
&
n
,
&
c
,
&
in_d
,
&
in_h
,
&
in_w
);
auto
interp_method
=
ctx
.
Attr
<
std
::
string
>
(
"interp_method"
);
bool
align_corners
=
ctx
.
Attr
<
bool
>
(
"align_corners"
);
int
align_mode
=
ctx
.
Attr
<
int
>
(
"align_mode"
);
int
align_center
=
align_corners
?
0
:
(
align_mode
==
1
?
0
:
1
);
int
out_d
=
ctx
.
Attr
<
int
>
(
"out_d"
);
int
out_h
=
ctx
.
Attr
<
int
>
(
"out_h"
);
int
out_w
=
ctx
.
Attr
<
int
>
(
"out_w"
);
float
scale_d
=
-
1
;
float
scale_h
=
-
1
;
float
scale_w
=
-
1
;
auto
list_new_size_tensor
=
ctx
.
MultiInput
<
framework
::
Tensor
>
(
"SizeTensor"
);
if
(
list_new_size_tensor
.
size
()
>
0
)
{
// have size tensor
auto
new_size
=
get_new_shape_mlu
(
list_new_size_tensor
);
if
(
new_size
.
size
()
<=
2
)
{
// default NCHW
out_h
=
new_size
[
0
];
out_w
=
new_size
[
1
];
}
else
{
// rank of input is 5, HCDHW
out_d
=
new_size
[
0
];
out_h
=
new_size
[
1
];
out_w
=
new_size
[
2
];
}
}
else
{
auto
scale_tensor
=
ctx
.
Input
<
Tensor
>
(
"Scale"
);
auto
scale
=
ctx
.
Attr
<
std
::
vector
<
float
>>
(
"scale"
);
if
(
scale_tensor
!=
nullptr
)
{
std
::
vector
<
float
>
scale_data
;
scale_data
=
GetDataFromTensor
<
float
>
(
scale_tensor
);
if
(
scale_data
.
size
()
>
1
&&
scale_data
.
size
()
<=
2
)
{
scale_h
=
scale_data
[
0
];
scale_w
=
scale_data
[
1
];
}
else
if
(
scale_data
.
size
()
>
2
)
{
scale_d
=
scale_data
[
0
];
scale_h
=
scale_data
[
1
];
scale_w
=
scale_data
[
2
];
}
else
{
scale_d
=
scale_data
[
0
];
scale_h
=
scale_data
[
0
];
scale_w
=
scale_data
[
0
];
}
PADDLE_ENFORCE_EQ
(
scale_w
>
0
&&
scale_h
>
0
,
true
,
platform
::
errors
::
InvalidArgument
(
"scale of Op(interpolate) "
"should be greater than 0."
));
}
else
{
if
(
scale
.
size
()
>
1
&&
scale
.
size
()
<=
2
)
{
scale_h
=
scale
[
0
];
scale_w
=
scale
[
1
];
PADDLE_ENFORCE_EQ
(
scale_w
>
0
&&
scale_h
>
0
,
true
,
platform
::
errors
::
InvalidArgument
(
"scale of Op(interpolate) "
"should be greater than 0."
));
}
else
if
(
scale
.
size
()
>
2
)
{
scale_d
=
scale
[
0
];
scale_h
=
scale
[
1
];
scale_w
=
scale
[
2
];
PADDLE_ENFORCE_EQ
(
scale_d
>
0
&&
scale_w
>
0
&&
scale_h
>
0
,
true
,
platform
::
errors
::
InvalidArgument
(
"scale of Op(interpolate) "
"should be greater than 0."
));
}
}
if
(
scale_h
>
0.
&&
scale_w
>
0.
)
{
out_h
=
static_cast
<
int
>
(
in_h
*
scale_h
);
out_w
=
static_cast
<
int
>
(
in_w
*
scale_w
);
}
if
(
scale_d
>
0.
)
{
out_d
=
static_cast
<
int
>
(
in_d
*
scale_d
);
}
auto
out_size
=
ctx
.
Input
<
Tensor
>
(
"OutSize"
);
if
(
out_size
!=
nullptr
)
{
std
::
vector
<
int32_t
>
out_size_data
;
out_size_data
=
GetDataFromTensor
<
int
>
(
out_size
);
if
(
out_size_data
.
size
()
<=
2
)
{
out_h
=
out_size_data
[
0
];
out_w
=
out_size_data
[
1
];
}
else
{
out_d
=
out_size_data
[
0
];
out_h
=
out_size_data
[
1
];
out_w
=
out_size_data
[
2
];
}
}
}
PADDLE_ENFORCE_GT
(
out_h
,
0
,
platform
::
errors
::
InvalidArgument
(
"out_h in Attr(out_shape) of "
"Op(interpolate) "
"should be greater than 0."
));
PADDLE_ENFORCE_GT
(
out_w
,
0
,
platform
::
errors
::
InvalidArgument
(
"out_w in Attr(out_shape) of "
"Op(interpolate) "
"should be greater than 0."
));
// do transpose according to cnnl's constraints
// cnnlInterp_v2 only accepts NHWC when mode is CNNL_INTERP_BILINEAR and
// CNNL_INTERP_NEAREST,
framework
::
DDim
dim_in
,
dim_in_trans
,
dim_out
,
dim_out_trans
;
Tensor
transformed_input
,
transformed_output
;
bool
need_transpose
=
input_dims
.
size
()
!=
2
;
if
(
input_dims
.
size
()
==
4
)
{
// need to do transpose if layout is kNCHW
need_transpose
&=
data_layout
==
DataLayout
::
kNCHW
;
if
(
need_transpose
)
{
// if need_transpose, do the following
// 1. transpose input NCHW -> NHWC
// 2. interpolation in(NHWC) -> out(NHWC)
// 3. transpose output NHWC -> HCHW
// dim_in = {n, c, in_h, in_w};
dim_in_trans
=
{
n
,
in_h
,
in_w
,
c
};
dim_out
=
{
n
,
c
,
out_h
,
out_w
};
dim_out_trans
=
{
n
,
out_h
,
out_w
,
c
};
output
->
mutable_data
<
T
>
(
dim_out
,
ctx
.
GetPlace
());
if
(
in_h
==
out_h
&&
in_w
==
out_w
)
{
framework
::
TensorCopy
(
*
input
,
ctx
.
GetPlace
(),
output
);
return
;
}
// do transpose on input tensor, then do interpolation
MLUCnnlTensorDesc
input_desc
(
*
input
,
CNNL_LAYOUT_NCHW
,
ToCnnlDataType
(
input
->
dtype
()));
transformed_input
=
ctx
.
AllocateTmpTensor
<
T
,
MLUDeviceContext
>
(
dim_in_trans
,
dev_ctx
);
transformed_output
=
ctx
.
AllocateTmpTensor
<
T
,
MLUDeviceContext
>
(
dim_out_trans
,
dev_ctx
);
MLUCnnlTensorDesc
input_reshaped_desc
(
transformed_input
,
CNNL_LAYOUT_NHWC
,
ToCnnlDataType
(
transformed_input
.
dtype
()));
const
std
::
vector
<
int
>
perm
=
{
0
,
2
,
3
,
1
};
MLUCnnl
::
Transpose
(
ctx
,
perm
,
input_dims
.
size
(),
input_desc
.
get
(),
GetBasePtr
(
input
),
input_reshaped_desc
.
get
(),
GetBasePtr
(
&
transformed_input
));
}
else
{
// if no need_transpose, do the following
// 1. interpolation in(NHWC) -> out(NHWC)
// dim_in = {n, in_h, in_w, c};
dim_out
=
{
n
,
out_h
,
out_w
,
c
};
output
->
mutable_data
<
T
>
(
dim_out
,
ctx
.
GetPlace
());
if
(
in_h
==
out_h
&&
in_w
==
out_w
)
{
framework
::
TensorCopy
(
*
input
,
ctx
.
GetPlace
(),
output
);
return
;
}
transformed_input
=
*
input
;
transformed_output
=
*
output
;
}
MLUCnnlTensorDesc
input_desc
(
transformed_input
,
CNNL_LAYOUT_NHWC
,
ToCnnlDataType
(
transformed_input
.
dtype
()));
MLUCnnlTensorDesc
output_desc
(
transformed_output
,
CNNL_LAYOUT_NHWC
,
ToCnnlDataType
(
transformed_output
.
dtype
()));
MLUCnnl
::
Interp
(
ctx
,
GetMLUCnnlInterpMode
(
interp_method
),
align_corners
,
align_center
,
input_desc
.
get
(),
GetBasePtr
(
&
transformed_input
),
output_desc
.
get
(),
GetBasePtr
(
&
transformed_output
));
if
(
need_transpose
)
{
// if need_transpose, reshape output back to NCHW
const
std
::
vector
<
int
>
perm
=
{
0
,
3
,
1
,
2
};
MLUCnnlTensorDesc
output_reshape_desc
(
*
output
,
CNNL_LAYOUT_NCHW
,
ToCnnlDataType
(
output
->
dtype
()));
MLUCnnl
::
Transpose
(
ctx
,
perm
,
dim_out_trans
.
size
(),
output_desc
.
get
(),
GetBasePtr
(
&
transformed_output
),
output_reshape_desc
.
get
(),
GetBasePtr
(
output
));
}
}
else
{
PADDLE_ENFORCE_EQ
(
interp_method
,
"trilinear"
,
platform
::
errors
::
External
(
"MLU Interpolate kernel only supports 5D "
"data in trilinear mode."
));
// need to do transpose if layout is kNCDHW
need_transpose
&=
data_layout
==
DataLayout
::
kNCHW
;
if
(
need_transpose
)
{
// if need_transpose, do the following
// 1. transpose input NCDHW -> NDHWC
// 2. interpolation in(NDHWC) -> out(NDHWC)
// 3. transpose output NDHWC -> HCDHW
// dim_in = {n, c, in_d, in_h, in_w};
dim_in_trans
=
{
n
,
in_d
,
in_h
,
in_w
,
c
};
dim_out
=
{
n
,
c
,
out_d
,
out_h
,
out_w
};
dim_out_trans
=
{
n
,
out_d
,
out_h
,
out_w
,
c
};
output
->
mutable_data
<
T
>
(
dim_out
,
ctx
.
GetPlace
());
if
(
in_h
==
out_h
&&
in_w
==
out_w
&&
in_d
==
out_d
)
{
framework
::
TensorCopy
(
*
input
,
ctx
.
GetPlace
(),
output
);
return
;
}
// do transpose on input tensor (HCDHW -> NDHWC), then do interpolation
MLUCnnlTensorDesc
input_desc
(
*
input
,
CNNL_LAYOUT_NCDHW
,
ToCnnlDataType
(
input
->
dtype
()));
transformed_input
=
ctx
.
AllocateTmpTensor
<
T
,
MLUDeviceContext
>
(
dim_in_trans
,
dev_ctx
);
transformed_output
=
ctx
.
AllocateTmpTensor
<
T
,
MLUDeviceContext
>
(
dim_out_trans
,
dev_ctx
);
MLUCnnlTensorDesc
input_reshaped_desc
(
transformed_input
,
CNNL_LAYOUT_NDHWC
,
ToCnnlDataType
(
transformed_input
.
dtype
()));
const
std
::
vector
<
int
>
perm
=
{
0
,
2
,
3
,
4
,
1
};
MLUCnnl
::
Transpose
(
ctx
,
perm
,
input_dims
.
size
(),
input_desc
.
get
(),
GetBasePtr
(
input
),
input_reshaped_desc
.
get
(),
GetBasePtr
(
&
transformed_input
));
}
else
{
// if no need_transpose, do the following
// 1. interpolation in(NDHWC) -> out(NDHWC)
// dim_in = {n, in_d, in_h, in_w, c};
dim_out
=
{
n
,
out_d
,
out_h
,
out_w
,
c
};
output
->
mutable_data
<
T
>
(
dim_out
,
ctx
.
GetPlace
());
if
(
in_h
==
out_h
&&
in_w
==
out_w
&&
in_d
==
out_d
)
{
framework
::
TensorCopy
(
*
input
,
ctx
.
GetPlace
(),
output
);
return
;
}
transformed_input
=
*
input
;
transformed_output
=
*
output
;
}
MLUCnnlTensorDesc
input_desc
(
transformed_input
,
CNNL_LAYOUT_NDHWC
,
ToCnnlDataType
(
transformed_input
.
dtype
()));
MLUCnnlTensorDesc
output_desc
(
transformed_output
,
CNNL_LAYOUT_NDHWC
,
ToCnnlDataType
(
transformed_output
.
dtype
()));
// use trilinear mode in HCDHW layout
MLUCnnl
::
Interp
(
ctx
,
GetMLUCnnlInterpMode
(
interp_method
),
align_corners
,
align_center
,
input_desc
.
get
(),
GetBasePtr
(
&
transformed_input
),
output_desc
.
get
(),
GetBasePtr
(
&
transformed_output
));
if
(
need_transpose
)
{
// if need_transpose, reshape output back (NDHWC -> NCDHW)
const
std
::
vector
<
int
>
perm
=
{
0
,
4
,
1
,
2
,
3
};
MLUCnnlTensorDesc
output_reshape_desc
(
*
output
,
CNNL_LAYOUT_NCDHW
,
ToCnnlDataType
(
output
->
dtype
()));
MLUCnnl
::
Transpose
(
ctx
,
perm
,
dim_out_trans
.
size
(),
output_desc
.
get
(),
GetBasePtr
(
&
transformed_output
),
output_reshape_desc
.
get
(),
GetBasePtr
(
output
));
}
}
}
};
template
<
typename
T
>
class
InterpolateV2GradMLUKernel
:
public
framework
::
OpKernel
<
T
>
{
public:
void
Compute
(
const
framework
::
ExecutionContext
&
ctx
)
const
override
{
auto
&
dev_ctx
=
ctx
.
template
device_context
<
MLUDeviceContext
>();
auto
*
input_grad
=
ctx
.
Output
<
Tensor
>
(
framework
::
GradVarName
(
"X"
));
auto
*
output_grad
=
ctx
.
Input
<
Tensor
>
(
framework
::
GradVarName
(
"Out"
));
auto
output_grad_dims
=
output_grad
->
dims
();
PADDLE_ENFORCE_EQ
(
output_grad_dims
.
size
(),
4
,
platform
::
errors
::
External
(
"XPU Interpolategrad kernel only support 2d"
));
auto
*
input
=
ctx
.
Input
<
Tensor
>
(
"X"
);
auto
input_dims
=
input
->
dims
();
const
std
::
string
data_layout_str
=
ctx
.
Attr
<
std
::
string
>
(
"data_layout"
);
const
DataLayout
data_layout
=
framework
::
StringToDataLayout
(
data_layout_str
);
int
n
,
c
,
in_d
,
in_h
,
in_w
;
ExtractNCDWH
(
input
->
dims
(),
data_layout
,
&
n
,
&
c
,
&
in_d
,
&
in_h
,
&
in_w
);
auto
interp_method
=
ctx
.
Attr
<
std
::
string
>
(
"interp_method"
);
bool
align_corners
=
ctx
.
Attr
<
bool
>
(
"align_corners"
);
int
align_mode
=
ctx
.
Attr
<
int
>
(
"align_mode"
);
int
align_center
=
align_corners
?
0
:
(
align_mode
==
0
?
0
:
1
);
align_center
=
0
;
int
out_h
=
ctx
.
Attr
<
int
>
(
"out_h"
);
int
out_w
=
ctx
.
Attr
<
int
>
(
"out_w"
);
float
scale_h
=
-
1
;
float
scale_w
=
-
1
;
auto
list_new_size_tensor
=
ctx
.
MultiInput
<
framework
::
Tensor
>
(
"SizeTensor"
);
if
(
list_new_size_tensor
.
size
()
>
0
)
{
// have size tensor
auto
new_size
=
get_new_shape_mlu
(
list_new_size_tensor
);
out_h
=
new_size
[
0
];
out_w
=
new_size
[
1
];
}
else
{
auto
scale_tensor
=
ctx
.
Input
<
Tensor
>
(
"Scale"
);
auto
scale
=
ctx
.
Attr
<
std
::
vector
<
float
>>
(
"scale"
);
if
(
scale_tensor
!=
nullptr
)
{
std
::
vector
<
float
>
scale_data
;
scale_data
=
GetDataFromTensor
<
float
>
(
scale_tensor
);
if
(
scale_data
.
size
()
>
1
)
{
scale_h
=
scale_data
[
0
];
scale_w
=
scale_data
[
1
];
}
else
{
scale_h
=
scale_data
[
0
];
scale_w
=
scale_data
[
0
];
}
PADDLE_ENFORCE_EQ
(
scale_w
>
0
&&
scale_h
>
0
,
true
,
platform
::
errors
::
InvalidArgument
(
"scale of Op(interpolate) "
"should be greater than 0."
));
}
else
{
if
(
scale
.
size
()
>
1
)
{
scale_h
=
scale
[
0
];
scale_w
=
scale
[
1
];
PADDLE_ENFORCE_EQ
(
scale_w
>
0
&&
scale_h
>
0
,
true
,
platform
::
errors
::
InvalidArgument
(
"scale of Op(interpolate) "
"should be greater than 0."
));
}
}
if
(
scale_h
>
0.
&&
scale_w
>
0.
)
{
out_h
=
static_cast
<
int
>
(
in_h
*
scale_h
);
out_w
=
static_cast
<
int
>
(
in_w
*
scale_w
);
}
auto
out_size
=
ctx
.
Input
<
Tensor
>
(
"OutSize"
);
if
(
out_size
!=
nullptr
)
{
std
::
vector
<
int32_t
>
out_size_data
;
out_size_data
=
GetDataFromTensor
<
int
>
(
out_size
);
out_h
=
out_size_data
[
0
];
out_w
=
out_size_data
[
1
];
}
}
framework
::
DDim
dim_grad
;
framework
::
DDim
dim_out_grad
,
dim_out_trans_grad
,
dim_in_grad
,
dim_in_trans_grad
;
Tensor
transformed_output_grad
,
transformed_input_grad
;
bool
need_transpose
=
input_dims
.
size
()
!=
2
&&
data_layout
==
DataLayout
::
kNCHW
;
if
(
need_transpose
)
{
// if need_transpose, do the following
// 1. transpose output_grad NCHW -> NHWC
// 2. InterpBackward output_grad(NHWC) -> input_grad(NHWC)
// 3. transpose input_grad NHWC -> HCHW
// dim_out_grad = {n, c, out_h, out_w};
dim_out_trans_grad
=
{
n
,
out_h
,
out_w
,
c
};
dim_in_grad
=
{
n
,
c
,
in_h
,
in_w
};
dim_in_trans_grad
=
{
n
,
in_h
,
in_w
,
c
};
input_grad
->
mutable_data
<
T
>
(
dim_in_grad
,
ctx
.
GetPlace
());
if
(
in_h
==
out_h
&&
in_w
==
out_w
)
{
framework
::
TensorCopy
(
*
output_grad
,
ctx
.
GetPlace
(),
input_grad
);
return
;
}
// do transpose on input tensor, then do interpolation
MLUCnnlTensorDesc
input_desc
(
*
output_grad
,
CNNL_LAYOUT_NCHW
,
ToCnnlDataType
(
output_grad
->
dtype
()));
transformed_output_grad
=
ctx
.
AllocateTmpTensor
<
T
,
MLUDeviceContext
>
(
dim_out_trans_grad
,
dev_ctx
);
transformed_input_grad
=
ctx
.
AllocateTmpTensor
<
T
,
MLUDeviceContext
>
(
dim_in_trans_grad
,
dev_ctx
);
MLUCnnlTensorDesc
input_reshaped_desc
(
transformed_output_grad
,
CNNL_LAYOUT_NHWC
,
ToCnnlDataType
(
transformed_output_grad
.
dtype
()));
const
std
::
vector
<
int
>
perm
=
{
0
,
2
,
3
,
1
};
MLUCnnl
::
Transpose
(
ctx
,
perm
,
input_dims
.
size
(),
input_desc
.
get
(),
GetBasePtr
(
output_grad
),
input_reshaped_desc
.
get
(),
GetBasePtr
(
&
transformed_output_grad
));
}
else
{
// if no need_transpose, do the following
// 1. InterpBackward output_grad(NHWC) -> input_grad(NHWC)
dim_in_grad
=
{
n
,
in_h
,
in_w
,
c
};
input_grad
->
mutable_data
<
T
>
(
dim_in_grad
,
ctx
.
GetPlace
());
if
(
in_h
==
out_h
&&
in_w
==
out_w
)
{
framework
::
TensorCopy
(
*
output_grad
,
ctx
.
GetPlace
(),
input_grad
);
return
;
}
transformed_output_grad
=
*
output_grad
;
transformed_input_grad
=
*
input_grad
;
}
MLUCnnlTensorDesc
input_desc
(
transformed_output_grad
,
CNNL_LAYOUT_NHWC
,
ToCnnlDataType
(
transformed_output_grad
.
dtype
()));
MLUCnnlTensorDesc
output_desc
(
transformed_input_grad
,
CNNL_LAYOUT_NHWC
,
ToCnnlDataType
(
transformed_input_grad
.
dtype
()));
MLUCnnl
::
InterpBackward
(
ctx
,
GetMLUCnnlInterpBackwardMode
(
interp_method
),
align_corners
,
align_center
,
input_desc
.
get
(),
GetBasePtr
(
&
transformed_output_grad
),
output_desc
.
get
(),
GetBasePtr
(
&
transformed_input_grad
));
if
(
need_transpose
)
{
const
std
::
vector
<
int
>
perm
=
{
0
,
3
,
1
,
2
};
MLUCnnlTensorDesc
output_reshape_desc
(
*
input_grad
,
CNNL_LAYOUT_NCHW
,
ToCnnlDataType
(
input_grad
->
dtype
()));
MLUCnnl
::
Transpose
(
ctx
,
perm
,
dim_in_trans_grad
.
size
(),
output_desc
.
get
(),
GetBasePtr
(
&
transformed_input_grad
),
output_reshape_desc
.
get
(),
GetBasePtr
(
input_grad
));
}
}
};
}
// namespace operators
}
// namespace paddle
namespace
ops
=
paddle
::
operators
;
namespace
plat
=
paddle
::
platform
;
REGISTER_OP_MLU_KERNEL
(
bilinear_interp_v2
,
ops
::
InterpolateV2MLUKernel
<
float
>
,
ops
::
InterpolateV2MLUKernel
<
plat
::
float16
>
);
REGISTER_OP_MLU_KERNEL
(
nearest_interp_v2
,
ops
::
InterpolateV2MLUKernel
<
float
>
,
ops
::
InterpolateV2MLUKernel
<
plat
::
float16
>
);
REGISTER_OP_MLU_KERNEL
(
nearest_interp_v2_grad
,
ops
::
InterpolateV2GradMLUKernel
<
float
>
,
ops
::
InterpolateV2GradMLUKernel
<
plat
::
float16
>
);
REGISTER_OP_MLU_KERNEL
(
bilinear_interp_v2_grad
,
ops
::
InterpolateV2GradMLUKernel
<
float
>
,
ops
::
InterpolateV2GradMLUKernel
<
plat
::
float16
>
);
paddle/fluid/operators/mlu/mlu_baseop.cc
浏览文件 @
affe25b7
...
@@ -1925,9 +1925,9 @@ MLUCnnlTrigonDesc::~MLUCnnlTrigonDesc() {
...
@@ -1925,9 +1925,9 @@ MLUCnnlTrigonDesc::~MLUCnnlTrigonDesc() {
const
cnnlTensorDescriptor_t
output_desc
,
void
*
output
)
{
const
cnnlTensorDescriptor_t
output_desc
,
void
*
output
)
{
cnnlHandle_t
handle
=
GetHandleFromCTX
(
ctx
);
cnnlHandle_t
handle
=
GetHandleFromCTX
(
ctx
);
PADDLE_ENFORCE_MLU_SUCCESS
(
PADDLE_ENFORCE_MLU_SUCCESS
(
cnnlInterpBackward_v2
(
cnnlInterpBackward
(
handle
,
align_corners
,
half_pixel_centers
,
mode
,
handle
,
align_corners
,
half_pixel_centers
,
mode
,
NULL
,
true
,
input_desc
,
input_desc
,
input
,
output_desc
,
output
));
input
,
output_desc
,
output
));
}
}
/* static */
void
MLUCnnl
::
Cast
(
const
ExecutionContext
&
ctx
,
/* static */
void
MLUCnnl
::
Cast
(
const
ExecutionContext
&
ctx
,
...
...
paddle/fluid/operators/mlu/mlu_baseop.h
浏览文件 @
affe25b7
...
@@ -41,6 +41,20 @@ const std::map<std::string, cnnlReduceOp_t> MLUReduceOpMap = {
...
@@ -41,6 +41,20 @@ const std::map<std::string, cnnlReduceOp_t> MLUReduceOpMap = {
{
"reduce_prod"
,
CNNL_REDUCE_MUL
},
{
"reduce_prod"
,
CNNL_REDUCE_MUL
},
};
};
const
std
::
map
<
std
::
string
,
cnnlInterpMode_t
>
MLUInterpModeMap
=
{
{
"bilinear"
,
CNNL_INTERP_BILINEAR
},
{
"nearest"
,
CNNL_INTERP_NEAREST
},
{
"linear"
,
CNNL_INTERP_LINEAR
},
{
"trilinear"
,
CNNL_INTERP_TRILINEAR
},
{
"bicubic"
,
CNNL_INTERP_BICUBIC
}};
const
std
::
map
<
std
::
string
,
cnnlInterpBackwardMode_t
>
MLUInterpBackwardModeMap
=
{{
"bilinear"
,
CNNL_INTERP_BACKWARD_BILINEAR
},
{
"nearest"
,
CNNL_INTERP_BACKWARD_NEAREST
},
{
"linear"
,
CNNL_INTERP_BACKWARD_LINEAR
},
{
"trilinear"
,
CNNL_INTERP_BACKWARD_TRILINEAR
},
{
"bicubic"
,
CNNL_INTERP_BACKWARD_BICUBIC
}};
inline
cnnlReduceOp_t
GetMLUCnnlReduceOp
(
const
std
::
string
reduce_name
)
{
inline
cnnlReduceOp_t
GetMLUCnnlReduceOp
(
const
std
::
string
reduce_name
)
{
auto
iter
=
MLUReduceOpMap
.
find
(
reduce_name
);
auto
iter
=
MLUReduceOpMap
.
find
(
reduce_name
);
if
(
iter
!=
MLUReduceOpMap
.
end
())
{
if
(
iter
!=
MLUReduceOpMap
.
end
())
{
...
@@ -50,6 +64,25 @@ inline cnnlReduceOp_t GetMLUCnnlReduceOp(const std::string reduce_name) {
...
@@ -50,6 +64,25 @@ inline cnnlReduceOp_t GetMLUCnnlReduceOp(const std::string reduce_name) {
"Not support reduce op type of MLU Device: %s"
,
reduce_name
));
"Not support reduce op type of MLU Device: %s"
,
reduce_name
));
}
}
inline
cnnlInterpMode_t
GetMLUCnnlInterpMode
(
const
std
::
string
interp_mode
)
{
auto
iter
=
MLUInterpModeMap
.
find
(
interp_mode
);
if
(
iter
!=
MLUInterpModeMap
.
end
())
{
return
iter
->
second
;
}
PADDLE_THROW
(
platform
::
errors
::
InvalidArgument
(
"Not support interp mode of MLU Device: %s"
,
interp_mode
));
}
inline
cnnlInterpBackwardMode_t
GetMLUCnnlInterpBackwardMode
(
const
std
::
string
interp_mode
)
{
auto
iter
=
MLUInterpBackwardModeMap
.
find
(
interp_mode
);
if
(
iter
!=
MLUInterpBackwardModeMap
.
end
())
{
return
iter
->
second
;
}
PADDLE_THROW
(
platform
::
errors
::
InvalidArgument
(
"Not support interp mode of MLU Device: %s"
,
interp_mode
));
}
inline
const
void
*
GetBasePtr
(
const
Tensor
*
t
)
{
return
t
->
data
();
}
inline
const
void
*
GetBasePtr
(
const
Tensor
*
t
)
{
return
t
->
data
();
}
inline
void
*
GetBasePtr
(
Tensor
*
t
)
{
return
t
->
data
();
}
inline
void
*
GetBasePtr
(
Tensor
*
t
)
{
return
t
->
data
();
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录