96 lines
3.3 KiB
Python
96 lines
3.3 KiB
Python
# Copyright (c) 2023 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
|
|
|
|
import paddle
|
|
from paddle import _pir_ops, nn
|
|
from paddle.autograd.ir_backward import grad
|
|
from paddle.decomposition import decomp
|
|
from paddle.framework import core
|
|
|
|
paddle.enable_static()
|
|
|
|
|
|
class SimpNet(nn.Layer):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def forward(self, x, linear1_weight, linear2_weight):
|
|
x2 = _pir_ops.matmul(x, linear1_weight, False, False)
|
|
x3 = _pir_ops.gelu(x2, False)
|
|
res = _pir_ops.matmul(x3, linear2_weight, False, False)
|
|
return res
|
|
|
|
|
|
class TestPrimMode(unittest.TestCase):
|
|
def setUp(self):
|
|
np.random.seed(2023)
|
|
self.shape_x = [2, 1024, 1024]
|
|
self.shape_y = [2, 1024, 1024]
|
|
self.shape_l1_w = [2, 1024, 4096]
|
|
self.shape_l2_w = [2, 4096, 1024]
|
|
self.x = np.random.random(self.shape_x).astype("float32")
|
|
self.y = np.random.random(self.shape_y).astype("float32")
|
|
self.l1_w = np.random.random(self.shape_l1_w).astype("float32")
|
|
self.l2_w = np.random.random(self.shape_l2_w).astype("float32")
|
|
|
|
def base_net(self, flag=None):
|
|
if flag == "all":
|
|
core._set_prim_all_enabled(True)
|
|
main_program = paddle.static.Program()
|
|
with paddle.static.program_guard(main_program):
|
|
net = SimpNet()
|
|
x = paddle.static.data('x', self.shape_x, dtype='float32')
|
|
y = paddle.static.data('y', self.shape_y, dtype='float32')
|
|
x.stop_gradient = False
|
|
y.stop_gradient = False
|
|
l1_w = paddle.static.data('l1_w', self.shape_l1_w, dtype='float32')
|
|
l2_w = paddle.static.data('l2_w', self.shape_l2_w, dtype='float32')
|
|
divide_out = paddle.divide(x, y)
|
|
res = net(divide_out, l1_w, l2_w)
|
|
[res2] = decomp.decompose(main_program, [res])
|
|
gradients = grad(res2, (x, y))
|
|
exe = paddle.static.Executor()
|
|
outs = exe.run(
|
|
feed={
|
|
'x': self.x,
|
|
'y': self.y,
|
|
'l1_w': self.l1_w,
|
|
'l2_w': self.l2_w,
|
|
},
|
|
fetch_list=[res2, gradients[0], gradients[1]],
|
|
)
|
|
|
|
whole_ops = [op.name() for op in main_program.global_block().ops]
|
|
if flag == "all":
|
|
core._set_prim_all_enabled(False)
|
|
assert (
|
|
'pd_op.gelu' not in whole_ops
|
|
and 'pd_op.divide_grad' not in whole_ops
|
|
)
|
|
return outs
|
|
|
|
def test_prim_all(self):
|
|
res_ref = self.base_net()
|
|
res = self.base_net("all")
|
|
for ref, actual in zip(res_ref, res):
|
|
np.testing.assert_allclose(ref, actual, rtol=1e-6)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|