diff --git a/tests/st/ops/custom_ops_tbe/__init__.py b/tests/st/ops/custom_ops_tbe/__init__.py deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/tests/st/ops/custom_ops_tbe/cus_conv2d_impl.py b/tests/st/ops/custom_ops_tbe/conv2d_impl.py similarity index 100% rename from tests/st/ops/custom_ops_tbe/cus_conv2d_impl.py rename to tests/st/ops/custom_ops_tbe/conv2d_impl.py diff --git a/tests/st/ops/custom_ops_tbe/cus_conv2d.py b/tests/st/ops/custom_ops_tbe/cus_conv2d.py index 8cf8177ecba23023319dba3fd2a7996d672ff9dd..0002ae3af12c952e97a689934517b4b81a41c7c1 100644 --- a/tests/st/ops/custom_ops_tbe/cus_conv2d.py +++ b/tests/st/ops/custom_ops_tbe/cus_conv2d.py @@ -103,7 +103,7 @@ class Cus_Conv2D(PrimitiveWithInfer): raise ValueError('Attr \'kernel_size\' of \'Conv2D\' Op passed ' + str(self.kernel_size) + ', should be a int or tuple and equal to or greater than 1.') self.stride = validator.check_integer('stride', stride, 1, Rel.GE) - from .cus_conv2d_impl import Cus_Conv2D + from conv2d_impl import Cus_Conv2D def infer_shape(self, x_shape, w_shape): validator.check_integer("weight_shape", len(w_shape), 4, Rel.EQ) diff --git a/tests/st/ops/custom_ops_tbe/test_cus_conv.py b/tests/st/ops/custom_ops_tbe/test_conv.py similarity index 100% rename from tests/st/ops/custom_ops_tbe/test_cus_conv.py rename to tests/st/ops/custom_ops_tbe/test_conv.py