Add pass compatible and unit test. (#27377)
parent
02606d45ef
commit
39546aa2f3
@ -0,0 +1,54 @@
|
||||
# Copyright (c) 2020 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 inference_pass_test import InferencePassTest
|
||||
import paddle.fluid as fluid
|
||||
import paddle.fluid.core as core
|
||||
from paddle.fluid.core import AnalysisConfig
|
||||
from paddle.fluid.core import PassVersionChecker
|
||||
|
||||
|
||||
class FcFusePassTest(InferencePassTest):
|
||||
def setUp(self):
|
||||
with fluid.program_guard(self.main_program, self.startup_program):
|
||||
data = fluid.data(
|
||||
name="data", shape=[-1, 128, 768], dtype="float32")
|
||||
data_y = fluid.data(name="y", shape=[-1, 128, 768], dtype="float32")
|
||||
fc_out1 = fluid.layers.fc(input=data,
|
||||
size=3072,
|
||||
num_flatten_dims=2,
|
||||
act="relu")
|
||||
fc_out2 = fluid.layers.fc(input=fc_out1,
|
||||
size=768,
|
||||
num_flatten_dims=2)
|
||||
|
||||
self.feeds = {"data": np.random.random((4, 128, 768)).astype("float32")}
|
||||
self.fetch_list = [fc_out2]
|
||||
|
||||
def test_check_output(self):
|
||||
use_gpu = [False]
|
||||
if core.is_compiled_with_cuda():
|
||||
use_gpu.append(True)
|
||||
for i in range(len(use_gpu)):
|
||||
self.check_output_with_option(use_gpu[i])
|
||||
|
||||
self.assertTrue(PassVersionChecker.IsCompatible('fc_fuse_pass'))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
@ -0,0 +1,86 @@
|
||||
# Copyright (c) 2020 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.
|
||||
|
||||
import unittest
|
||||
import numpy as np
|
||||
from inference_pass_test import InferencePassTest
|
||||
import paddle.fluid as fluid
|
||||
import paddle.fluid.core as core
|
||||
from paddle.fluid.core import PassVersionChecker
|
||||
|
||||
|
||||
class FcGruFusePassTest(InferencePassTest):
|
||||
def setUp(self):
|
||||
with fluid.program_guard(self.main_program, self.startup_program):
|
||||
dict_dim, emb_dim = 128, 64
|
||||
data = fluid.data(
|
||||
name='step_data', shape=[None], dtype='int64', lod_level=1)
|
||||
emb = fluid.embedding(input=data, size=[dict_dim, emb_dim])
|
||||
hidden_dim = 512
|
||||
x = fluid.layers.fc(input=emb, size=hidden_dim * 3)
|
||||
hidden = fluid.layers.dynamic_gru(
|
||||
input=x,
|
||||
size=hidden_dim,
|
||||
bias_attr=True,
|
||||
origin_mode=False,
|
||||
is_reverse=True)
|
||||
|
||||
batch = 16
|
||||
lod_tensor = fluid.LoDTensor()
|
||||
lod_tensor.set(np.random.randint(
|
||||
0, dict_dim, size=[batch]).astype("int64"),
|
||||
fluid.CPUPlace())
|
||||
lod_tensor.set_lod([[0, batch]])
|
||||
self.feeds = {"step_data": lod_tensor}
|
||||
self.fetch_list = [hidden]
|
||||
|
||||
def test_check_output(self):
|
||||
use_gpu = False
|
||||
self.check_output_with_option(use_gpu)
|
||||
self.assertTrue(PassVersionChecker.IsCompatible('fc_gru_fuse_pass'))
|
||||
|
||||
|
||||
class MulGruFusePassTest(InferencePassTest):
|
||||
def setUp(self):
|
||||
with fluid.program_guard(self.main_program, self.startup_program):
|
||||
dict_dim, emb_dim = 128, 64
|
||||
data = fluid.data(
|
||||
name='step_data', shape=[None], dtype='int64', lod_level=1)
|
||||
emb = fluid.embedding(input=data, size=[dict_dim, emb_dim])
|
||||
hidden_dim = 512
|
||||
x = fluid.layers.fc(input=emb, size=hidden_dim * 3, bias_attr=False)
|
||||
hidden = fluid.layers.dynamic_gru(
|
||||
input=x,
|
||||
size=hidden_dim,
|
||||
bias_attr=True,
|
||||
origin_mode=False,
|
||||
is_reverse=True)
|
||||
|
||||
batch = 16
|
||||
lod_tensor = fluid.LoDTensor()
|
||||
lod_tensor.set(np.random.randint(
|
||||
0, dict_dim, size=[batch]).astype("int64"),
|
||||
fluid.CPUPlace())
|
||||
lod_tensor.set_lod([[0, batch]])
|
||||
self.feeds = {"step_data": lod_tensor}
|
||||
self.fetch_list = [hidden]
|
||||
|
||||
def test_check_output(self):
|
||||
use_gpu = False
|
||||
self.check_output_with_option(use_gpu)
|
||||
self.assertTrue(PassVersionChecker.IsCompatible('mul_gru_fuse_pass'))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
@ -0,0 +1,52 @@
|
||||
# Copyright (c) 2020 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.
|
||||
|
||||
import unittest
|
||||
import numpy as np
|
||||
from inference_pass_test import InferencePassTest
|
||||
import paddle.fluid as fluid
|
||||
import paddle.fluid.core as core
|
||||
from paddle.fluid.core import PassVersionChecker
|
||||
|
||||
|
||||
class MulLstmFusePassTest(InferencePassTest):
|
||||
def setUp(self):
|
||||
with fluid.program_guard(self.main_program, self.startup_program):
|
||||
dict_dim, emb_dim = 128, 64
|
||||
hidden_dim = 512
|
||||
|
||||
data = fluid.data(
|
||||
name='data', shape=[1], dtype='int64', lod_level=1)
|
||||
emb = fluid.embedding(input=data, size=[dict_dim, emb_dim])
|
||||
x = fluid.layers.fc(input=emb, size=hidden_dim * 4, bias_attr=False)
|
||||
forward, cell = fluid.layers.dynamic_lstm(
|
||||
input=x, size=hidden_dim * 4)
|
||||
|
||||
batch = 16
|
||||
lod_tensor = fluid.LoDTensor()
|
||||
lod_tensor.set(np.random.randint(
|
||||
0, dict_dim, size=[batch]).astype("int64"),
|
||||
fluid.CPUPlace())
|
||||
lod_tensor.set_lod([[0, batch]])
|
||||
self.feeds = {"data": lod_tensor}
|
||||
self.fetch_list = [forward, cell]
|
||||
|
||||
def test_check_output(self):
|
||||
use_gpu = False
|
||||
self.check_output_with_option(use_gpu)
|
||||
self.assertTrue(PassVersionChecker.IsCompatible('mul_lstm_fuse_pass'))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
@ -0,0 +1,63 @@
|
||||
# Copyright (c) 2020 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 inference_pass_test import InferencePassTest
|
||||
import paddle
|
||||
import paddle.fluid as fluid
|
||||
import paddle.fluid.core as core
|
||||
from paddle.fluid.core import AnalysisConfig
|
||||
from paddle.fluid.core import PassVersionChecker
|
||||
|
||||
|
||||
class SquaredMatSubFusePassTest(InferencePassTest):
|
||||
def setUp(self):
|
||||
with fluid.program_guard(self.main_program, self.startup_program):
|
||||
data_a = fluid.data(name="data_a", shape=[128, 1], dtype="float32")
|
||||
data_b = fluid.data(name="data_b", shape=[256, 1], dtype="float32")
|
||||
|
||||
fc_a = fluid.layers.fc(data_a, size=256)
|
||||
fc_b = fluid.layers.fc(data_b, size=64)
|
||||
|
||||
data_a_square = paddle.square(fc_a)
|
||||
data_b_square = paddle.square(fc_b)
|
||||
|
||||
matmul_ab = paddle.matmul(fc_a, fc_b)
|
||||
matmul_ab_square = paddle.square(matmul_ab)
|
||||
matmul_square_ab = paddle.matmul(data_a_square, data_b_square)
|
||||
|
||||
scale = paddle.fill_constant(shape=[1], value=0.5, dtype='float32')
|
||||
|
||||
sub_val = paddle.elementwise_sub(matmul_ab_square, matmul_square_ab)
|
||||
squared_mat_sub_out = fluid.layers.elementwise_mul(sub_val, scale)
|
||||
|
||||
self.feeds = {
|
||||
"data_a": np.random.random((128, 1)).astype("float32"),
|
||||
"data_b": np.random.random((256, 1)).astype("float32")
|
||||
}
|
||||
self.fetch_list = [squared_mat_sub_out]
|
||||
|
||||
def test_check_output(self):
|
||||
use_gpu = False
|
||||
self.check_output_with_option(use_gpu)
|
||||
|
||||
self.assertTrue(
|
||||
PassVersionChecker.IsCompatible('squared_mat_sub_fuse_pass'))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
Loading…
Reference in new issue