213 lines
7.8 KiB
Python
213 lines
7.8 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
|
|
from get_test_cover_info import (
|
|
XPUOpTestWrapper,
|
|
create_test_class,
|
|
get_xpu_op_support_types,
|
|
)
|
|
from op_test import convert_float_to_uint16
|
|
from op_test_xpu import XPUOpTest
|
|
|
|
import paddle
|
|
from paddle import base
|
|
from paddle.base.backward import append_backward
|
|
|
|
paddle.enable_static()
|
|
|
|
|
|
class XPUTestWhereOp(XPUOpTestWrapper):
|
|
def __init__(self):
|
|
self.op_name = 'where'
|
|
|
|
class TestXPUWhereOp(XPUOpTest):
|
|
def setUp(self):
|
|
self.init_config()
|
|
self.init_data()
|
|
self.convert_data_if_bf16()
|
|
self.inputs = {'Condition': self.cond, 'X': self.x, 'Y': self.y}
|
|
self.outputs = {'Out': np.where(self.cond, self.x, self.y)}
|
|
|
|
def init_data(self):
|
|
self.x = np.random.uniform(-3, 5, (100))
|
|
self.y = np.random.uniform(-3, 5, (100))
|
|
self.cond = np.zeros(100).astype("bool")
|
|
|
|
def convert_data_if_bf16(self):
|
|
if self.dtype == np.uint16:
|
|
self.x = convert_float_to_uint16(self.x)
|
|
self.y = convert_float_to_uint16(self.y)
|
|
else:
|
|
self.x = self.x.astype(self.dtype)
|
|
self.y = self.y.astype(self.dtype)
|
|
|
|
def init_config(self):
|
|
self.op_type = "where"
|
|
self.dtype = self.in_type
|
|
self.place = paddle.XPUPlace(0)
|
|
self.__class__.no_need_check_grad = True
|
|
|
|
def test_check_output(self):
|
|
self.check_output_with_place(self.place)
|
|
|
|
def test_check_grad(self):
|
|
self.check_grad_with_place(self.place, ['X', 'Y'], 'Out')
|
|
|
|
class TestXPUWhereOp2(TestXPUWhereOp):
|
|
def init_data(self):
|
|
self.x = np.random.uniform(-5, 5, (60, 2))
|
|
self.y = np.random.uniform(-5, 5, (60, 2))
|
|
self.cond = np.ones((60, 2)).astype("bool")
|
|
|
|
class TestXPUWhereOp3(TestXPUWhereOp):
|
|
def init_data(self):
|
|
self.x = np.random.uniform(-3, 5, (20, 2, 4))
|
|
self.y = np.random.uniform(-3, 5, (20, 2, 4))
|
|
self.cond = np.array(
|
|
np.random.randint(2, size=(20, 2, 4)), dtype=bool
|
|
)
|
|
|
|
|
|
support_types = get_xpu_op_support_types('where')
|
|
for stype in support_types:
|
|
create_test_class(globals(), XPUTestWhereOp, stype)
|
|
|
|
|
|
class TestXPUWhereAPI(unittest.TestCase):
|
|
def setUp(self):
|
|
self.__class__.use_xpu = True
|
|
self.place = paddle.XPUPlace(0)
|
|
self.init_data()
|
|
|
|
def init_data(self):
|
|
self.shape = [10, 15]
|
|
self.cond = np.array(np.random.randint(2, size=self.shape), dtype=bool)
|
|
self.x = np.random.uniform(-2, 3, self.shape).astype(np.float32)
|
|
self.y = np.random.uniform(-2, 3, self.shape).astype(np.float32)
|
|
self.out = np.where(self.cond, self.x, self.y)
|
|
|
|
def ref_x_backward(self, dout):
|
|
return np.where(self.cond, dout, 0)
|
|
|
|
def ref_y_backward(self, dout):
|
|
return np.where(~self.cond, dout, 0)
|
|
|
|
def test_api(self):
|
|
for x_stop_gradient in [False, True]:
|
|
for y_stop_gradient in [False, True]:
|
|
train_prog = base.Program()
|
|
startup = base.Program()
|
|
with base.program_guard(train_prog, startup):
|
|
cond = paddle.static.data(
|
|
name='cond', shape=self.shape, dtype='bool'
|
|
)
|
|
x = paddle.static.data(
|
|
name='x', shape=self.shape, dtype='float32'
|
|
)
|
|
y = paddle.static.data(
|
|
name='y', shape=self.shape, dtype='float32'
|
|
)
|
|
|
|
x.stop_gradient = x_stop_gradient
|
|
y.stop_gradient = y_stop_gradient
|
|
|
|
result = paddle.where(cond, x, y)
|
|
result.stop_gradient = False
|
|
append_backward(paddle.mean(result))
|
|
|
|
exe = base.Executor(self.place)
|
|
exe.run(startup)
|
|
|
|
if paddle.framework.use_pir_api():
|
|
fetch_list = [result]
|
|
out = exe.run(
|
|
train_prog,
|
|
feed={'cond': self.cond, 'x': self.x, 'y': self.y},
|
|
fetch_list=fetch_list,
|
|
)
|
|
np.testing.assert_array_equal(out[0], self.out)
|
|
else:
|
|
fetch_list = [result, result.grad_name]
|
|
if x_stop_gradient is False:
|
|
fetch_list.append(x.grad_name)
|
|
if y_stop_gradient is False:
|
|
fetch_list.append(y.grad_name)
|
|
out = exe.run(
|
|
train_prog,
|
|
feed={'cond': self.cond, 'x': self.x, 'y': self.y},
|
|
fetch_list=fetch_list,
|
|
)
|
|
np.testing.assert_array_equal(out[0], self.out)
|
|
|
|
if x_stop_gradient is False:
|
|
np.testing.assert_array_equal(
|
|
out[2], self.ref_x_backward(out[1])
|
|
)
|
|
if y.stop_gradient is False:
|
|
np.testing.assert_array_equal(
|
|
out[3], self.ref_y_backward(out[1])
|
|
)
|
|
elif y.stop_gradient is False:
|
|
np.testing.assert_array_equal(
|
|
out[2], self.ref_y_backward(out[1])
|
|
)
|
|
|
|
def test_api_broadcast(self, use_cuda=False):
|
|
train_prog = base.Program()
|
|
startup = base.Program()
|
|
with base.program_guard(train_prog, startup):
|
|
x = paddle.static.data(name='x', shape=[-1, 4, 1], dtype='float32')
|
|
y = paddle.static.data(name='y', shape=[-1, 4, 2], dtype='float32')
|
|
x_i = (
|
|
np.array([[0.9383, 0.1983, 3.2, 1.2]])
|
|
.astype("float32")
|
|
.reshape([1, 4, 1])
|
|
)
|
|
y_i = (
|
|
np.array([[1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0]])
|
|
.astype("float32")
|
|
.reshape([1, 4, 2])
|
|
)
|
|
result = paddle.where(x > 1, x=x, y=y)
|
|
|
|
exe = base.Executor(self.place)
|
|
exe.run(startup)
|
|
|
|
out = exe.run(
|
|
train_prog, feed={'x': x_i, 'y': y_i}, fetch_list=[result]
|
|
)
|
|
np.testing.assert_array_equal(out[0], np.where(x_i > 1, x_i, y_i))
|
|
|
|
|
|
class TestWhereDygraphAPI(unittest.TestCase):
|
|
def test_api(self):
|
|
with base.dygraph.guard(paddle.XPUPlace(0)):
|
|
x_i = np.array([0.9383, 0.1983, 3.2, 1.2]).astype("float32")
|
|
y_i = np.array([1.0, 1.0, 1.0, 1.0]).astype("float32")
|
|
cond_i = np.array([False, False, True, True]).astype("bool")
|
|
x = paddle.to_tensor(x_i)
|
|
y = paddle.to_tensor(y_i)
|
|
cond = paddle.to_tensor(cond_i)
|
|
out = paddle.where(cond, x, y)
|
|
np.testing.assert_array_equal(
|
|
out.numpy(), np.where(cond_i, x_i, y_i)
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|