Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
86ea8dce
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看板
未验证
提交
86ea8dce
编写于
5月 25, 2021
作者:
J
jakpiase
提交者:
GitHub
5月 25, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Added scale op FP32/BF16 FWD/BWD kernels (#32975)
上级
88b43b51
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
345 addition
and
3 deletion
+345
-3
paddle/fluid/framework/data_layout_transform.cc
paddle/fluid/framework/data_layout_transform.cc
+2
-2
paddle/fluid/framework/data_layout_transform.h
paddle/fluid/framework/data_layout_transform.h
+2
-1
paddle/fluid/inference/api/details/zero_copy_tensor.cc
paddle/fluid/inference/api/details/zero_copy_tensor.cc
+17
-0
paddle/fluid/operators/mkldnn/scale_mkldnn_op.cc
paddle/fluid/operators/mkldnn/scale_mkldnn_op.cc
+75
-0
paddle/fluid/operators/scale_op.cc
paddle/fluid/operators/scale_op.cc
+20
-0
paddle/fluid/operators/unity_build_rule.cmake
paddle/fluid/operators/unity_build_rule.cmake
+1
-0
python/paddle/fluid/tests/unittests/mkldnn/test_scale_bf16_mkldnn_op.py
...fluid/tests/unittests/mkldnn/test_scale_bf16_mkldnn_op.py
+122
-0
python/paddle/fluid/tests/unittests/mkldnn/test_scale_mkldnn_op.py
...ddle/fluid/tests/unittests/mkldnn/test_scale_mkldnn_op.py
+104
-0
tools/static_mode_white_list.py
tools/static_mode_white_list.py
+2
-0
未找到文件。
paddle/fluid/framework/data_layout_transform.cc
浏览文件 @
86ea8dce
...
@@ -143,7 +143,7 @@ void TransDataLayoutFromMKLDNN(const OpKernelType& kernel_type_for_var,
...
@@ -143,7 +143,7 @@ void TransDataLayoutFromMKLDNN(const OpKernelType& kernel_type_for_var,
void
innerTransDataLayoutFromMKLDNN
(
DataLayout
in_layout
,
DataLayout
out_layout
,
void
innerTransDataLayoutFromMKLDNN
(
DataLayout
in_layout
,
DataLayout
out_layout
,
const
Tensor
&
in
,
Tensor
*
out
,
const
Tensor
&
in
,
Tensor
*
out
,
platform
::
Place
place
)
{
platform
::
Place
place
,
bool
always_copy
)
{
PADDLE_ENFORCE_NE
(
in
.
format
(),
MKLDNNMemoryFormat
::
undef
,
PADDLE_ENFORCE_NE
(
in
.
format
(),
MKLDNNMemoryFormat
::
undef
,
platform
::
errors
::
InvalidArgument
(
platform
::
errors
::
InvalidArgument
(
"Input tensor format is invalid. Input tensor should "
"Input tensor format is invalid. Input tensor should "
...
@@ -177,7 +177,7 @@ void innerTransDataLayoutFromMKLDNN(DataLayout in_layout, DataLayout out_layout,
...
@@ -177,7 +177,7 @@ void innerTransDataLayoutFromMKLDNN(DataLayout in_layout, DataLayout out_layout,
// output tensor has the same dims as input. Reorder don't change dims
// output tensor has the same dims as input. Reorder don't change dims
out
->
Resize
(
in
.
dims
());
out
->
Resize
(
in
.
dims
());
if
(
in_format
!=
out_format
)
{
if
(
(
in_format
!=
out_format
)
||
always_copy
)
{
void
*
in_data
=
GetDataFromTensor
(
in
,
in_type
);
void
*
in_data
=
GetDataFromTensor
(
in
,
in_type
);
std
::
string
key
=
std
::
string
key
=
platform
::
CreateKey
(
*
dev_ctx
,
in_tz
,
in_format
,
out_format
,
in_type
);
platform
::
CreateKey
(
*
dev_ctx
,
in_tz
,
in_format
,
out_format
,
in_type
);
...
...
paddle/fluid/framework/data_layout_transform.h
浏览文件 @
86ea8dce
...
@@ -78,7 +78,8 @@ inline MKLDNNDataType ToMKLDNNDataType(proto::VarType::Type type) {
...
@@ -78,7 +78,8 @@ inline MKLDNNDataType ToMKLDNNDataType(proto::VarType::Type type) {
void
innerTransDataLayoutFromMKLDNN
(
DataLayout
in_layout
,
DataLayout
out_layout
,
void
innerTransDataLayoutFromMKLDNN
(
DataLayout
in_layout
,
DataLayout
out_layout
,
const
Tensor
&
in
,
Tensor
*
out
,
const
Tensor
&
in
,
Tensor
*
out
,
platform
::
Place
place
);
platform
::
Place
place
,
bool
always_copy
=
false
);
void
TransDataLayoutFromMKLDNN
(
const
OpKernelType
&
kernel_type_for_var
,
void
TransDataLayoutFromMKLDNN
(
const
OpKernelType
&
kernel_type_for_var
,
const
OpKernelType
&
expected_kernel_type
,
const
OpKernelType
&
expected_kernel_type
,
...
...
paddle/fluid/inference/api/details/zero_copy_tensor.cc
浏览文件 @
86ea8dce
...
@@ -12,6 +12,7 @@
...
@@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// See the License for the specific language governing permissions and
// limitations under the License.
// limitations under the License.
#include "paddle/fluid/framework/data_layout_transform.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/scope.h"
#include "paddle/fluid/framework/scope.h"
#include "paddle/fluid/inference/api/paddle_inference_api.h"
#include "paddle/fluid/inference/api/paddle_inference_api.h"
...
@@ -161,8 +162,24 @@ void Tensor::CopyToCpu(T *data) {
...
@@ -161,8 +162,24 @@ void Tensor::CopyToCpu(T *data) {
auto
*
t_data
=
tensor
->
data
<
T
>
();
auto
*
t_data
=
tensor
->
data
<
T
>
();
auto
t_place
=
tensor
->
place
();
auto
t_place
=
tensor
->
place
();
paddle
::
framework
::
Tensor
out
;
auto
mem_allocation
=
std
::
make_shared
<
paddle
::
memory
::
Allocation
>
(
static_cast
<
void
*>
(
data
),
ele_num
*
sizeof
(
T
),
paddle
::
platform
::
CPUPlace
());
out
.
ResetHolder
(
mem_allocation
);
if
(
paddle
::
platform
::
is_cpu_place
(
t_place
))
{
if
(
paddle
::
platform
::
is_cpu_place
(
t_place
))
{
#ifdef PADDLE_WITH_MKLDNN
if
(
tensor
->
layout
()
==
paddle
::
framework
::
DataLayout
::
kMKLDNN
)
paddle
::
framework
::
innerTransDataLayoutFromMKLDNN
(
tensor
->
layout
(),
paddle
::
platform
::
MKLDNNDeviceContext
::
tls
()
.
get_cur_paddle_data_layout
(),
*
tensor
,
&
out
,
paddle
::
platform
::
CPUPlace
(),
true
);
else
std
::
memcpy
(
static_cast
<
void
*>
(
data
),
t_data
,
ele_num
*
sizeof
(
T
));
#else
std
::
memcpy
(
static_cast
<
void
*>
(
data
),
t_data
,
ele_num
*
sizeof
(
T
));
std
::
memcpy
(
static_cast
<
void
*>
(
data
),
t_data
,
ele_num
*
sizeof
(
T
));
#endif
}
else
if
(
place_
==
PlaceType
::
kGPU
)
{
}
else
if
(
place_
==
PlaceType
::
kGPU
)
{
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
paddle
::
platform
::
DeviceContextPool
&
pool
=
paddle
::
platform
::
DeviceContextPool
&
pool
=
...
...
paddle/fluid/operators/mkldnn/scale_mkldnn_op.cc
0 → 100644
浏览文件 @
86ea8dce
/* Copyright (c) 2021 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/platform/mkldnn_reuse.h"
namespace
paddle
{
namespace
operators
{
using
paddle
::
framework
::
Tensor
;
template
<
typename
T
>
class
ScaleMKLDNNKernel
:
public
framework
::
OpKernel
<
T
>
{
public:
void
Compute
(
const
framework
::
ExecutionContext
&
ctx
)
const
override
{
this
->
RunKernel
(
ctx
);
}
void
RunKernel
(
const
framework
::
ExecutionContext
&
ctx
)
const
{
const
auto
&
dev_ctx
=
ctx
.
template
device_context
<
platform
::
MKLDNNDeviceContext
>();
bool
bias_after_scale
=
ctx
.
Attr
<
bool
>
(
"bias_after_scale"
);
auto
*
x
=
ctx
.
Input
<
Tensor
>
(
"X"
);
auto
*
out
=
ctx
.
Output
<
Tensor
>
(
"Out"
);
auto
*
scale_tensor
=
ctx
.
Input
<
Tensor
>
(
"ScaleTensor"
);
float
scale
=
(
scale_tensor
==
nullptr
)
?
ctx
.
Attr
<
float
>
(
"scale"
)
:
(
float
)
*
(
scale_tensor
->
data
<
T
>
());
float
bias
=
ctx
.
Attr
<
float
>
(
"bias"
);
// if bias_after_scale == true
// out = scale*X + bias
// else
// out = scale*(X + bias) = scale*X + scale*bias
if
(
!
bias_after_scale
)
bias
*=
scale
;
auto
x_tz
=
framework
::
vectorize
<
int64_t
>
(
x
->
dims
());
bool
is_inplaced
=
x
->
IsSharedBufferWith
(
*
out
);
platform
::
ActivationMKLDNNHandler
<
T
>
handler
(
x_tz
,
mkldnn
::
algorithm
::
eltwise_linear
,
scale
,
bias
,
x
->
format
(),
dev_ctx
,
ctx
.
GetPlace
(),
ctx
.
InputName
(
"X"
),
is_inplaced
);
auto
src_memory_p
=
handler
.
AcquireSrcMemory
(
x
);
auto
dst_memory_p
=
handler
.
AcquireDstMemory
(
out
);
auto
activation_p
=
handler
.
AcquireForwardPrimitive
();
auto
&
astream
=
paddle
::
platform
::
MKLDNNDeviceContext
::
tls
().
get_stream
();
activation_p
->
execute
(
astream
,
{{
MKLDNN_ARG_FROM
,
*
src_memory_p
},
{
MKLDNN_ARG_TO
,
*
dst_memory_p
}});
astream
.
wait
();
out
->
set_layout
(
framework
::
DataLayout
::
kMKLDNN
);
out
->
set_format
(
platform
::
GetMKLDNNFormat
(
*
dst_memory_p
));
}
};
}
// namespace operators
}
// namespace paddle
namespace
ops
=
paddle
::
operators
;
REGISTER_OP_KERNEL
(
scale
,
MKLDNN
,
paddle
::
platform
::
CPUPlace
,
ops
::
ScaleMKLDNNKernel
<
float
>
,
ops
::
ScaleMKLDNNKernel
<
paddle
::
platform
::
bfloat16
>
);
paddle/fluid/operators/scale_op.cc
浏览文件 @
86ea8dce
...
@@ -54,6 +54,21 @@ class ScaleOp : public framework::OperatorWithKernel {
...
@@ -54,6 +54,21 @@ class ScaleOp : public framework::OperatorWithKernel {
ctx
->
SetOutputDim
(
"Out"
,
ctx
->
GetInputDim
(
"X"
));
ctx
->
SetOutputDim
(
"Out"
,
ctx
->
GetInputDim
(
"X"
));
ctx
->
ShareLoD
(
"X"
,
/*->*/
"Out"
);
ctx
->
ShareLoD
(
"X"
,
/*->*/
"Out"
);
}
}
framework
::
OpKernelType
GetExpectedKernelType
(
const
framework
::
ExecutionContext
&
ctx
)
const
override
{
auto
input_data_type
=
framework
::
OperatorWithKernel
::
IndicateVarDataType
(
ctx
,
"X"
);
#ifdef PADDLE_WITH_MKLDNN
if
(
this
->
CanMKLDNNBeUsed
(
ctx
,
input_data_type
))
{
return
framework
::
OpKernelType
(
input_data_type
,
ctx
.
GetPlace
(),
framework
::
DataLayout
::
kMKLDNN
,
framework
::
LibraryType
::
kMKLDNN
);
}
#endif
return
framework
::
OpKernelType
(
input_data_type
,
ctx
.
GetPlace
());
}
};
};
class
ScaleOpMaker
:
public
framework
::
OpProtoAndCheckerMaker
{
class
ScaleOpMaker
:
public
framework
::
OpProtoAndCheckerMaker
{
...
@@ -87,6 +102,9 @@ $$Out = scale*(X + bias)$$
...
@@ -87,6 +102,9 @@ $$Out = scale*(X + bias)$$
"Apply bias addition after or before scaling. It is useful for "
"Apply bias addition after or before scaling. It is useful for "
"numeric stability in some circumstances."
)
"numeric stability in some circumstances."
)
.
SetDefault
(
true
);
.
SetDefault
(
true
);
AddAttr
<
bool
>
(
"use_mkldnn"
,
"(bool, default false) Only used in mkldnn kernel"
)
.
SetDefault
(
false
);
}
}
};
};
...
@@ -112,6 +130,8 @@ class ScaleGradMaker : public framework::SingleGradOpMaker<T> {
...
@@ -112,6 +130,8 @@ class ScaleGradMaker : public framework::SingleGradOpMaker<T> {
grad_op
->
SetAttr
(
"scale"
,
this
->
GetAttr
(
"scale"
));
grad_op
->
SetAttr
(
"scale"
,
this
->
GetAttr
(
"scale"
));
grad_op
->
SetAttr
(
"bias"
,
0.0
f
);
grad_op
->
SetAttr
(
"bias"
,
0.0
f
);
grad_op
->
SetAttr
(
"bias_after_scale"
,
true
);
grad_op
->
SetAttr
(
"bias_after_scale"
,
true
);
if
(
grad_op
->
HasAttr
(
"use_mkldnn"
))
grad_op
->
SetAttr
(
"use_mkldnn"
,
this
->
GetAttr
(
"use_mkldnn"
));
}
}
};
};
...
...
paddle/fluid/operators/unity_build_rule.cmake
浏览文件 @
86ea8dce
...
@@ -234,6 +234,7 @@ register_unity_group(cc
...
@@ -234,6 +234,7 @@ register_unity_group(cc
save_combine_op.cc
save_combine_op.cc
save_op.cc
save_op.cc
scale_op.cc
scale_op.cc
mkldnn/scale_mkldnn_op.cc
scatter_nd_add_op.cc
scatter_nd_add_op.cc
scatter_op.cc
scatter_op.cc
seed_op.cc
seed_op.cc
...
...
python/paddle/fluid/tests/unittests/mkldnn/test_scale_bf16_mkldnn_op.py
0 → 100644
浏览文件 @
86ea8dce
# Copyright (c) 2021 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.
from
__future__
import
print_function
import
unittest
import
numpy
as
np
from
paddle.fluid.tests.unittests.op_test
import
OpTest
,
convert_float_to_uint16
import
paddle
import
paddle.fluid
as
fluid
import
paddle.fluid.core
as
core
@
unittest
.
skipIf
(
not
core
.
supports_bfloat16
(),
"place does not support BF16 evaluation"
)
@
unittest
.
skipIf
(
core
.
is_compiled_with_cuda
(),
"core is compiled with CUDA which has no BF implementation"
)
class
TestScaleOpBF16
(
OpTest
):
def
setUp
(
self
):
self
.
op_type
=
"scale"
self
.
x_fp32
=
np
.
random
.
random
((
10
,
10
)).
astype
(
np
.
float32
)
self
.
x_bf16
=
convert_float_to_uint16
(
self
.
x_fp32
)
self
.
scale
=
-
2.3
self
.
inputs
=
{
'X'
:
self
.
x_bf16
}
self
.
attrs
=
{
'scale'
:
self
.
scale
,
'use_mkldnn'
:
True
,
'bias'
:
0.4
}
self
.
use_mkldnn
=
True
self
.
outputs
=
{
'Out'
:
(
self
.
x_fp32
*
self
.
attrs
[
'scale'
])
+
self
.
attrs
[
'bias'
]
}
def
calculate_grads
(
self
):
bias
=
0
if
'bias'
in
self
.
attrs
:
bias
=
self
.
attrs
[
'bias'
]
scale
=
self
.
scale
if
'ScaleTensor'
in
self
.
attrs
:
scale
=
self
.
attrs
[
'ScaleTensor'
]
self
.
out
=
(
self
.
x_fp32
*
scale
)
+
bias
self
.
dx
=
(
self
.
out
*
scale
)
def
test_check_output
(
self
):
self
.
check_output
(
check_dygraph
=
False
)
def
test_check_grad
(
self
):
self
.
calculate_grads
()
self
.
check_grad_with_place
(
core
.
CPUPlace
(),
[
"X"
],
"Out"
,
check_dygraph
=
False
,
user_defined_grads
=
[
self
.
dx
],
user_defined_grad_outputs
=
[
convert_float_to_uint16
(
self
.
out
)])
class
TestScaleOpBF16BiasNotAfterScale
(
TestScaleOpBF16
):
def
setUp
(
self
):
self
.
op_type
=
"scale"
self
.
x_fp32
=
np
.
random
.
random
((
10
,
10
)).
astype
(
np
.
float32
)
self
.
x_bf16
=
convert_float_to_uint16
(
self
.
x_fp32
)
self
.
scale
=
1.5
self
.
inputs
=
{
'X'
:
self
.
x_bf16
}
self
.
attrs
=
{
'scale'
:
self
.
scale
,
'use_mkldnn'
:
True
,
'bias'
:
0.0
,
'bias_after_scale'
:
False
}
self
.
use_mkldnn
=
True
self
.
outputs
=
{
'Out'
:
(
self
.
x_fp32
+
self
.
attrs
[
'bias'
])
*
self
.
attrs
[
'scale'
]
}
class
TestScaleOpBF16ScaleTensor
(
TestScaleOpBF16
):
def
setUp
(
self
):
self
.
op_type
=
"scale"
self
.
scale
=
-
2.3
self
.
x_fp32
=
np
.
random
.
random
((
10
,
10
)).
astype
(
np
.
float32
)
self
.
x_bf16
=
convert_float_to_uint16
(
self
.
x_fp32
)
self
.
scale_tensor
=
np
.
array
([
self
.
scale
]).
astype
(
np
.
float32
)
self
.
inputs
=
{
'X'
:
self
.
x_bf16
,
'ScaleTensor'
:
convert_float_to_uint16
(
self
.
scale_tensor
)
}
self
.
attrs
=
{
'use_mkldnn'
:
True
}
self
.
outputs
=
{
'Out'
:
self
.
x_fp32
*
self
.
scale
}
class
TestScaleOpBF16ScaleTensorNotBiasAfterScale
(
TestScaleOpBF16
):
def
setUp
(
self
):
self
.
op_type
=
"scale"
self
.
scale
=
1.2
self
.
x_fp32
=
np
.
random
.
random
((
9
,
13
)).
astype
(
np
.
float32
)
self
.
x_bf16
=
convert_float_to_uint16
(
self
.
x_fp32
)
self
.
scale_tensor
=
np
.
array
([
self
.
scale
]).
astype
(
np
.
float32
)
self
.
inputs
=
{
'X'
:
self
.
x_bf16
,
'ScaleTensor'
:
convert_float_to_uint16
(
self
.
scale_tensor
)
}
self
.
attrs
=
{
'bias'
:
-
1.1
,
'bias_after_scale'
:
False
,
'use_mkldnn'
:
True
}
self
.
outputs
=
{
'Out'
:
(
self
.
x_fp32
+
self
.
attrs
[
'bias'
])
*
self
.
scale
}
if
__name__
==
"__main__"
:
paddle
.
enable_static
()
unittest
.
main
()
python/paddle/fluid/tests/unittests/mkldnn/test_scale_mkldnn_op.py
0 → 100644
浏览文件 @
86ea8dce
# Copyright (c) 2021 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.
from
__future__
import
print_function
import
unittest
import
numpy
as
np
from
paddle.fluid.tests.unittests.op_test
import
OpTest
import
paddle
import
paddle.fluid
as
fluid
class
TestScaleOp
(
OpTest
):
def
setUp
(
self
):
self
.
op_type
=
"scale"
self
.
inputs
=
{
'X'
:
np
.
random
.
random
((
10
,
10
)).
astype
(
np
.
float32
)}
self
.
attrs
=
{
'scale'
:
-
2.3
,
'use_mkldnn'
:
True
,
'bias'
:
0.2
}
self
.
use_mkldnn
=
True
self
.
outputs
=
{
'Out'
:
(
self
.
inputs
[
'X'
]
*
self
.
attrs
[
'scale'
])
+
self
.
attrs
[
'bias'
]
}
def
test_check_output
(
self
):
self
.
check_output
(
check_dygraph
=
False
)
def
test_check_grad
(
self
):
self
.
check_grad
([
'X'
],
'Out'
)
class
TestScaleOpBiasNotAfterScale
(
OpTest
):
def
setUp
(
self
):
self
.
op_type
=
"scale"
self
.
inputs
=
{
'X'
:
np
.
random
.
random
((
10
,
10
)).
astype
(
np
.
float32
)}
self
.
attrs
=
{
'scale'
:
1.5
,
'use_mkldnn'
:
True
,
'bias'
:
2.3
,
'bias_after_scale'
:
False
}
self
.
use_mkldnn
=
True
self
.
outputs
=
{
'Out'
:
(
self
.
inputs
[
'X'
]
+
self
.
attrs
[
'bias'
])
*
self
.
attrs
[
'scale'
]
}
def
test_check_output
(
self
):
self
.
check_output
(
check_dygraph
=
False
)
def
test_check_grad
(
self
):
self
.
check_grad
([
'X'
],
'Out'
)
class
TestScaleOpScaleTensor
(
OpTest
):
def
setUp
(
self
):
self
.
op_type
=
"scale"
self
.
scale
=
-
2.3
self
.
inputs
=
{
'X'
:
np
.
random
.
random
((
10
,
10
)).
astype
(
np
.
float32
),
'ScaleTensor'
:
np
.
array
([
self
.
scale
]).
astype
(
np
.
float32
)
}
self
.
attrs
=
{}
self
.
outputs
=
{
'Out'
:
self
.
inputs
[
'X'
]
*
self
.
scale
}
def
test_check_output
(
self
):
self
.
check_output
()
def
test_check_grad
(
self
):
self
.
check_grad
([
'X'
],
'Out'
)
class
TestScaleOpScaleTensorNotBiasAfterScale
(
OpTest
):
def
setUp
(
self
):
self
.
op_type
=
"scale"
self
.
scale
=
-
1.2
self
.
inputs
=
{
'X'
:
np
.
random
.
random
((
10
,
10
)).
astype
(
np
.
float32
),
'ScaleTensor'
:
np
.
array
([
self
.
scale
]).
astype
(
np
.
float32
)
}
self
.
attrs
=
{
'bias'
:
-
6.8
,
'bias_after_scale'
:
False
}
self
.
outputs
=
{
'Out'
:
(
self
.
inputs
[
'X'
]
+
self
.
attrs
[
'bias'
])
*
self
.
inputs
[
'ScaleTensor'
]
}
def
test_check_output
(
self
):
self
.
check_output
()
def
test_check_grad
(
self
):
self
.
check_grad
([
'X'
],
'Out'
)
if
__name__
==
"__main__"
:
paddle
.
enable_static
()
unittest
.
main
()
tools/static_mode_white_list.py
浏览文件 @
86ea8dce
...
@@ -447,6 +447,8 @@ STATIC_MODE_TESTING_LIST = [
...
@@ -447,6 +447,8 @@ STATIC_MODE_TESTING_LIST = [
'test_sample_logits_op'
,
'test_sample_logits_op'
,
'test_save_model_without_var'
,
'test_save_model_without_var'
,
'test_scale_op'
,
'test_scale_op'
,
'test_scale_mkldnn_op'
,
'test_scale_bf16_mkldnn_op'
,
'test_scaled_dot_product_attention'
,
'test_scaled_dot_product_attention'
,
'test_scatter_nd_op'
,
'test_scatter_nd_op'
,
'test_seed_op'
,
'test_seed_op'
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录