From 66680caba982dc21b7003e23c927ad9351fe50dc Mon Sep 17 00:00:00 2001 From: YuHao Date: Sat, 16 Mar 2024 02:29:28 +0000 Subject: [PATCH] Open ut Signed-off-by: YuHao --- test/network_ops/test_upsample_scale_bicubic2d.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/network_ops/test_upsample_scale_bicubic2d.py b/test/network_ops/test_upsample_scale_bicubic2d.py index a6c47cbdd33..e182815b2c1 100644 --- a/test/network_ops/test_upsample_scale_bicubic2d.py +++ b/test/network_ops/test_upsample_scale_bicubic2d.py @@ -43,7 +43,6 @@ class TestUpsampleBicubic2d(TestCase): return shape_format1 - @unittest.skip("skip test_upsample_bicubic2d_scale_common_shape_format now") def test_upsample_bicubic2d_scale_common_shape_format(self): for item in self.create_scale_shape_format32(): cpu_input1, npu_input1 = create_common_tensor(item[0], 0, 255) @@ -51,7 +50,6 @@ class TestUpsampleBicubic2d(TestCase): npu_output = self.npu_op_scale_exec(npu_input1, item[1]) self.assertRtolEqual(cpu_output, npu_output) - @unittest.skip("skip test_upsample_bicubic2d_float16_scale_shape_format now") def test_upsample_bicubic2d_float16_scale_shape_format(self): def cpu_op_exec_fp16(input1, size): input1 = input1.to(torch.float32) -- Gitee