414 lines
12 KiB
Python
414 lines
12 KiB
Python
# Copyright (c) 2018 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 os
|
|
import sys
|
|
import unittest
|
|
|
|
sys.path.append("../../legacy_test")
|
|
|
|
import numpy as np
|
|
from op_test import (
|
|
OpTest,
|
|
convert_float_to_uint16,
|
|
get_device_place,
|
|
is_custom_device,
|
|
)
|
|
from test_attribute_var import UnittestBase
|
|
|
|
import paddle
|
|
from paddle.base import Program, program_guard
|
|
from paddle.framework import in_pir_mode
|
|
|
|
|
|
class BaseTestCase(OpTest):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_min'
|
|
self.python_api = paddle.Tensor.argmin
|
|
self.dims = (3, 4, 5)
|
|
self.dtype = 'float32'
|
|
self.axis = 0
|
|
|
|
def setUp(self):
|
|
self.initTestCase()
|
|
self.x = (1000 * np.random.random(self.dims)).astype(self.dtype)
|
|
self.inputs = {'X': self.x}
|
|
self.attrs = {'axis': self.axis}
|
|
if self.op_type == "arg_min":
|
|
self.outputs = {'Out': np.argmin(self.x, axis=self.axis)}
|
|
else:
|
|
self.outputs = {'Out': np.argmax(self.x, axis=self.axis)}
|
|
|
|
def test_check_output(self):
|
|
self.check_output(check_cinn=True, check_pir=True)
|
|
|
|
|
|
class TestCase0(BaseTestCase):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_max'
|
|
self.python_api = paddle.Tensor.argmax
|
|
self.dims = (3, 4, 5)
|
|
self.dtype = 'float32'
|
|
self.axis = 0
|
|
|
|
|
|
class TestCase1(BaseTestCase):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_min'
|
|
self.python_api = paddle.Tensor.argmin
|
|
self.dims = (3, 4)
|
|
self.dtype = 'float64'
|
|
self.axis = 1
|
|
|
|
|
|
class TestCase2(BaseTestCase):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_max'
|
|
self.python_api = paddle.Tensor.argmax
|
|
self.dims = (3, 4)
|
|
self.dtype = 'int64'
|
|
self.axis = 0
|
|
|
|
|
|
@unittest.skipIf(
|
|
not (paddle.is_compiled_with_cuda() or is_custom_device()),
|
|
"FP16 test runs only on GPU",
|
|
)
|
|
class TestCase0FP16(BaseTestCase):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_max'
|
|
self.python_api = paddle.Tensor.argmax
|
|
self.dims = (3, 4, 5)
|
|
self.dtype = np.float16
|
|
self.axis = 0
|
|
|
|
|
|
@unittest.skipIf(
|
|
not (paddle.is_compiled_with_cuda() or is_custom_device()),
|
|
"FP16 test runs only on GPU",
|
|
)
|
|
class TestCase1FP16(BaseTestCase):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_min'
|
|
self.python_api = paddle.Tensor.argmin
|
|
self.dims = (3, 4)
|
|
self.dtype = np.float16
|
|
self.axis = 1
|
|
|
|
|
|
@unittest.skipIf(
|
|
not (paddle.is_compiled_with_cuda() or is_custom_device()),
|
|
"BFP16 test runs only on GPU",
|
|
)
|
|
class TestArgMinBF16OP(OpTest):
|
|
def initTestType(self):
|
|
self.op_type = 'arg_min'
|
|
self.python_api = paddle.Tensor.argmin
|
|
|
|
def initTestCase(self):
|
|
self.initTestType()
|
|
self.dims = (3, 4, 5)
|
|
self.axis = 0
|
|
self.dtype = np.uint16
|
|
|
|
def setUp(self):
|
|
self.initTestCase()
|
|
x = np.random.random(self.dims).astype("float32")
|
|
self.x = convert_float_to_uint16(x)
|
|
self.inputs = {'X': self.x}
|
|
self.attrs = {'axis': self.axis}
|
|
if self.op_type == "arg_min":
|
|
self.outputs = {'Out': np.argmin(x, axis=self.axis)}
|
|
else:
|
|
self.outputs = {'Out': np.argmax(x, axis=self.axis)}
|
|
|
|
def test_check_output(self):
|
|
self.check_output_with_place(get_device_place(), check_pir=True)
|
|
|
|
|
|
class TestArgMaxBF16OP(TestArgMinBF16OP):
|
|
def initTestType(self):
|
|
self.op_type = 'arg_max'
|
|
self.python_api = paddle.Tensor.argmax
|
|
|
|
|
|
class TestArgMinMaxTypeCheck(unittest.TestCase):
|
|
def test_type_error(self):
|
|
# in static mode
|
|
with program_guard(Program(), Program()):
|
|
x = paddle.static.data(name='x', shape=[100, 10], dtype='bool')
|
|
self.assertRaises(TypeError, paddle.argmin, x)
|
|
self.assertRaises(TypeError, paddle.argmax, x)
|
|
|
|
def test_bfp16(self):
|
|
# in static mode
|
|
if not (paddle.is_compiled_with_cuda() or is_custom_device()):
|
|
return
|
|
with program_guard(Program(), Program()):
|
|
x = paddle.zeros(name='x', shape=[100, 10], dtype='uint16')
|
|
t1 = paddle.argmin(x)
|
|
t2 = paddle.argmax(x)
|
|
|
|
|
|
class TestCase2_1(BaseTestCase):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_max'
|
|
self.python_api = paddle.Tensor.argmax
|
|
self.dims = (3, 4)
|
|
self.dtype = 'int64'
|
|
self.axis = -1
|
|
|
|
|
|
class TestCase3(BaseTestCase):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_max'
|
|
self.python_api = paddle.Tensor.argmax
|
|
self.dims = (3,)
|
|
self.dtype = 'int64'
|
|
self.axis = 0
|
|
|
|
|
|
class TestCase4(BaseTestCase):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_min'
|
|
self.python_api = paddle.Tensor.argmin
|
|
self.dims = (1,)
|
|
self.dtype = 'int32'
|
|
self.axis = 0
|
|
|
|
|
|
class TestCase3_(BaseTestCase):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_max'
|
|
self.python_api = paddle.Tensor.argmax
|
|
self.dims = (3,)
|
|
self.axis = 0
|
|
|
|
|
|
class BaseTestComplex1_1(OpTest):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_max'
|
|
self.python_api = paddle.Tensor.argmax
|
|
self.dims = (4, 5, 6)
|
|
self.dtype = 'int32'
|
|
self.axis = 2
|
|
|
|
def setUp(self):
|
|
self.initTestCase()
|
|
self.x = (np.random.random(self.dims)).astype(self.dtype)
|
|
self.inputs = {'X': self.x}
|
|
self.attrs = {'axis': self.axis}
|
|
self.attrs = {'dtype': paddle.int32}
|
|
if self.op_type == "arg_min":
|
|
self.outputs = {
|
|
'Out': np.argmin(self.x, axis=self.axis).asdtype("int32")
|
|
}
|
|
else:
|
|
self.outputs = {
|
|
'Out': np.argmax(self.x, axis=self.axis).asdtype("int32")
|
|
}
|
|
|
|
|
|
class BaseTestComplex1_2(OpTest):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_min'
|
|
self.python_api = paddle.Tensor.argmin
|
|
self.dims = (4, 5, 6)
|
|
self.dtype = 'int32'
|
|
self.axis = 2
|
|
|
|
def setUp(self):
|
|
self.initTestCase()
|
|
self.x = (np.random.random(self.dims)).astype(self.dtype)
|
|
self.inputs = {'X': self.x}
|
|
self.attrs = {'axis': self.axis}
|
|
self.attrs = {'dtype': paddle.int32}
|
|
if self.op_type == "arg_min":
|
|
self.outputs = {
|
|
'Out': np.argmin(self.x, axis=self.axis).asdtype("int32")
|
|
}
|
|
else:
|
|
self.outputs = {
|
|
'Out': np.argmax(self.x, axis=self.axis).asdtype("int32")
|
|
}
|
|
|
|
|
|
class BaseTestComplex2_1(OpTest):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_max'
|
|
self.python_api = paddle.Tensor.argmax
|
|
self.dims = (4, 5, 6)
|
|
self.dtype = 'int32'
|
|
self.axis = 2
|
|
|
|
def setUp(self):
|
|
self.initTestCase()
|
|
self.x = (np.random.random(self.dims)).astype(self.dtype)
|
|
self.inputs = {'X': self.x}
|
|
self.attrs = {'axis': self.axis}
|
|
self.attrs = {'dtype': paddle.int32}
|
|
self.attrs = {'keep_dims': True}
|
|
if self.op_type == "arg_min":
|
|
self.outputs = {
|
|
'Out': np.argmin(self.x, axis=self.axis)
|
|
.asdtype("int32")
|
|
.reshape(4, 5, 1)
|
|
}
|
|
else:
|
|
self.outputs = {
|
|
'Out': np.argmax(self.x, axis=self.axis)
|
|
.asdtype("int32")
|
|
.reshape(4, 5, 1)
|
|
}
|
|
|
|
|
|
class BaseTestComplex2_2(OpTest):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_min'
|
|
self.python_api = paddle.Tensor.argmin
|
|
self.dims = (4, 5, 6)
|
|
self.dtype = 'int32'
|
|
self.axis = 2
|
|
|
|
def setUp(self):
|
|
self.initTestCase()
|
|
self.x = (np.random.random(self.dims)).astype(self.dtype)
|
|
self.inputs = {'X': self.x}
|
|
self.attrs = {'axis': self.axis}
|
|
self.attrs = {'dtype': paddle.int32}
|
|
self.attrs = {'keep_dims': True}
|
|
if self.op_type == "arg_min":
|
|
self.outputs = {
|
|
'Out': np.argmin(self.x, axis=self.axis)
|
|
.asdtype("int32")
|
|
.reshape(4, 5, 1)
|
|
}
|
|
else:
|
|
self.outputs = {
|
|
'Out': np.argmax(self.x, axis=self.axis)
|
|
.asdtype("int32")
|
|
.reshape(4, 5, 1)
|
|
}
|
|
|
|
|
|
class TestArgMaxTensorAxis(UnittestBase):
|
|
def init_info(self):
|
|
self.shapes = [[2, 3, 4]]
|
|
self.x = [np.random.randn(*shape) for shape in self.shapes]
|
|
self.save_path = os.path.join(self.temp_dir.name, self.path_prefix())
|
|
|
|
def test_static(self):
|
|
main_prog = paddle.static.Program()
|
|
startup_prog = paddle.static.Program()
|
|
with paddle.static.program_guard(main_prog, startup_prog):
|
|
fc = paddle.nn.Linear(4, 10)
|
|
x = paddle.randn([2, 3, 4])
|
|
x.stop_gradient = False
|
|
feat = fc(x)
|
|
|
|
out = self.call_func(feat)
|
|
|
|
sgd = paddle.optimizer.SGD()
|
|
sgd.minimize(paddle.mean(paddle.cast(out, 'float32')))
|
|
if not in_pir_mode():
|
|
self.assertTrue(self.var_prefix() in str(main_prog))
|
|
|
|
exe = paddle.static.Executor()
|
|
exe.run(startup_prog)
|
|
res = exe.run(fetch_list=[feat, out])
|
|
paddle.static.save_inference_model(
|
|
self.save_path, [x], [feat, out], exe
|
|
)
|
|
gt = np.argmax(res[0], 0)
|
|
np.testing.assert_allclose(res[1], gt)
|
|
|
|
# Test for Inference Predictor
|
|
infer_outs = self.infer_prog()
|
|
gt = np.argmax(infer_outs[0], 0)
|
|
np.testing.assert_allclose(infer_outs[1], gt)
|
|
|
|
def path_prefix(self):
|
|
return 'argmax_tensor_axis'
|
|
|
|
def var_prefix(self):
|
|
return "Var["
|
|
|
|
def call_func(self, x):
|
|
axis = paddle.assign(0)
|
|
out = paddle.argmax(x, axis)
|
|
return out
|
|
|
|
|
|
class TestArgMinTensorAxis(TestArgMaxTensorAxis):
|
|
def test_static(self):
|
|
main_prog = paddle.base.Program()
|
|
startup_prog = paddle.base.Program()
|
|
with paddle.base.program_guard(main_prog, startup_prog):
|
|
fc = paddle.nn.Linear(4, 10)
|
|
x = paddle.randn([2, 3, 4])
|
|
x.stop_gradient = False
|
|
feat = fc(x)
|
|
feat = paddle.cast(feat, 'int32')
|
|
out = self.call_func(feat)
|
|
|
|
sgd = paddle.optimizer.SGD()
|
|
sgd.minimize(paddle.mean(paddle.cast(out, 'float32')))
|
|
if not paddle.framework.use_pir_api():
|
|
self.assertTrue(self.var_prefix() in str(main_prog))
|
|
|
|
exe = paddle.static.Executor()
|
|
exe.run(startup_prog)
|
|
res = exe.run(fetch_list=[feat, out])
|
|
paddle.static.save_inference_model(
|
|
self.save_path, [x], [feat, out], exe
|
|
)
|
|
gt = np.argmin(res[0], 1)
|
|
np.testing.assert_allclose(np.squeeze(res[1]), gt)
|
|
|
|
# Test for Inference Predictor
|
|
infer_outs = self.infer_prog()
|
|
gt = np.argmin(infer_outs[0], 1)
|
|
np.testing.assert_allclose(np.squeeze(infer_outs[1]), gt)
|
|
|
|
def path_prefix(self):
|
|
return 'argmin_tensor_axis'
|
|
|
|
def call_func(self, x):
|
|
axis = paddle.assign(1)
|
|
out = paddle.argmin(x, axis, keepdim=True)
|
|
return out
|
|
|
|
|
|
class TestArgmax_ZeroSize(BaseTestCase):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_max'
|
|
self.python_api = paddle.Tensor.argmax
|
|
self.dims = (3, 0, 5)
|
|
self.dtype = 'float32'
|
|
self.axis = 0
|
|
|
|
|
|
class TestArgmin_ZeroSize(BaseTestCase):
|
|
def initTestCase(self):
|
|
self.op_type = 'arg_min'
|
|
self.python_api = paddle.Tensor.argmin
|
|
self.dims = (3, 0, 5)
|
|
self.dtype = 'float32'
|
|
self.axis = 0
|
|
|
|
|
|
if __name__ == '__main__':
|
|
paddle.enable_static()
|
|
unittest.main()
|