未验证 提交 6a8847f3 编写于 作者: Z zhangjingwei 提交者: GitHub

[CodeStyle][CINN] format import region in python code via isort (#54963)

Co-authored-by: NSigureMo <sigure.qaq@gmail.com>
上级 4d7ddb49
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import sys
import subprocess import subprocess
import sys
def main(): def main():
......
...@@ -18,9 +18,6 @@ extend_skip_glob = [ ...@@ -18,9 +18,6 @@ extend_skip_glob = [
# see .flake8 for more details # see .flake8 for more details
"python/paddle/fluid/**", "python/paddle/fluid/**",
"python/paddle/utils/gast/**", "python/paddle/utils/gast/**",
# Temporarily ignore CINN files, it will fix later
"python/cinn/**",
"test/cinn/**",
] ]
[tool.ruff] [tool.ruff]
......
...@@ -12,5 +12,4 @@ ...@@ -12,5 +12,4 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from .core_api.backends import ExecutionOptions from .core_api.backends import ExecutionEngine, ExecutionOptions
from .core_api.backends import ExecutionEngine
...@@ -12,9 +12,16 @@ ...@@ -12,9 +12,16 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from .core_api.common import make_const
from .core_api.common import Target
from .core_api.common import Type
from .core_api.common import CINNValue
from .core_api.common import Void, Int, UInt, Float, Bool, String
from .core_api.common import * from .core_api.common import *
from .core_api.common import (
Bool,
CINNValue,
Float,
Int,
String,
Target,
Type,
UInt,
Void,
make_const,
)
...@@ -12,7 +12,5 @@ ...@@ -12,7 +12,5 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from .core_api.lang import Buffer
from .core_api.lang import lower
from .core_api.lang import compute
from .core_api.lang import * from .core_api.lang import *
from .core_api.lang import Buffer, compute, lower
...@@ -12,5 +12,4 @@ ...@@ -12,5 +12,4 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from .core_api.optim import simplify from .core_api.optim import ir_copy, simplify
from .core_api.optim import ir_copy
...@@ -12,13 +12,12 @@ ...@@ -12,13 +12,12 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import cinn
import os import os
import shutil import shutil
import numpy as np
import unittest import unittest
import cinn
import numpy as np
from cinn.auto_schedule.cost_model import CostModel from cinn.auto_schedule.cost_model import CostModel
......
...@@ -14,9 +14,10 @@ ...@@ -14,9 +14,10 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import numpy as np
import paddle import paddle
import paddle.static as static import paddle.static as static
import numpy as np
def conv2d_native(inputs_data, input_shape, filter_size, attrs, is_depthwise): def conv2d_native(inputs_data, input_shape, filter_size, attrs, is_depthwise):
......
...@@ -12,9 +12,12 @@ ...@@ -12,9 +12,12 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import os
import sys
import numpy import numpy
import sys, os
import numpy as np import numpy as np
import paddle import paddle
import paddle.fluid as fluid import paddle.fluid as fluid
import paddle.static as static import paddle.static as static
......
...@@ -14,9 +14,12 @@ ...@@ -14,9 +14,12 @@
""" """
A fake model with multiple FC layers to test CINN on a more complex model. A fake model with multiple FC layers to test CINN on a more complex model.
""" """
import os
import sys
import numpy import numpy
import sys, os
import numpy as np import numpy as np
import paddle import paddle
import paddle.fluid as fluid import paddle.fluid as fluid
import paddle.static as static import paddle.static as static
......
...@@ -12,10 +12,13 @@ ...@@ -12,10 +12,13 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import os
import sys
import numpy import numpy
import paddle
import sys, os
import numpy as np import numpy as np
import paddle
import paddle.fluid as fluid import paddle.fluid as fluid
import paddle.static as static import paddle.static as static
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
from fusion_test import FusionTest from fusion_test import FusionTest
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
from fusion_test import FusionTest from fusion_test import FusionTest
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
from fusion_test import FusionTest from fusion_test import FusionTest
......
...@@ -14,19 +14,18 @@ ...@@ -14,19 +14,18 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from ast import arg
import os
import logging import logging
import os
import sys
from ast import arg
import paddle
from paddle.static import Variable as PaddleVariable
from paddle.fluid.layer_helper import LayerHelper
from cinn.frontend import NetBuilder, PaddleModelConvertor
from cinn.common import is_compiled_with_cuda from cinn.common import is_compiled_with_cuda
from cinn.framework import Scope from cinn.framework import Scope
from cinn.frontend import NetBuilder, PaddleModelConvertor
import sys import paddle
from paddle.fluid.layer_helper import LayerHelper
from paddle.static import Variable as PaddleVariable
sys.path.append("/work/dev_CINN/build/python/tests") sys.path.append("/work/dev_CINN/build/python/tests")
from test.cinn.ops.op_test import OpTest, OpTestTool from test.cinn.ops.op_test import OpTest, OpTestTool
......
...@@ -14,11 +14,13 @@ ...@@ -14,11 +14,13 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import paddle
import unittest import unittest
from op_mapper_test import OpMapperTest
from cinn.frontend import *
from cinn.common import * from cinn.common import *
from cinn.frontend import *
from op_mapper_test import OpMapperTest
import paddle
class TestArgmaxOp(OpMapperTest): class TestArgmaxOp(OpMapperTest):
......
...@@ -14,11 +14,13 @@ ...@@ -14,11 +14,13 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import paddle
import unittest import unittest
from op_mapper_test import OpMapperTest
from cinn.frontend import *
from cinn.common import * from cinn.common import *
from cinn.frontend import *
from op_mapper_test import OpMapperTest
import paddle
class TestArgminOp(OpMapperTest): class TestArgminOp(OpMapperTest):
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -13,8 +13,10 @@ ...@@ -13,8 +13,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
from op_mapper_test import OpMapperTest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest
import paddle import paddle
......
...@@ -14,11 +14,13 @@ ...@@ -14,11 +14,13 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import paddle
import random import random
import unittest import unittest
from op_mapper_test import OpMapperTest from op_mapper_test import OpMapperTest
import paddle
class TestClipOp(OpMapperTest): class TestClipOp(OpMapperTest):
def init_input_data(self): def init_input_data(self):
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,7 +15,9 @@ ...@@ -15,7 +15,9 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
from op_mapper_test import OpMapperTest from op_mapper_test import OpMapperTest
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -14,11 +14,13 @@ ...@@ -14,11 +14,13 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import functools
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
import functools
class TestLayerNormOp(OpMapperTest): class TestLayerNormOp(OpMapperTest):
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -13,8 +13,10 @@ ...@@ -13,8 +13,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -13,8 +13,10 @@ ...@@ -13,8 +13,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -13,9 +13,11 @@ ...@@ -13,9 +13,11 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import paddle
from op_mapper_test import OpMapperTest
from cinn.common import * from cinn.common import *
from op_mapper_test import OpMapperTest
import paddle
@unittest.skipIf( @unittest.skipIf(
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,7 +15,9 @@ ...@@ -15,7 +15,9 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
from op_mapper_test import OpMapperTest from op_mapper_test import OpMapperTest
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -14,12 +14,14 @@ ...@@ -14,12 +14,14 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import numpy as np
import paddle
import random import random
import unittest import unittest
import numpy as np
from op_mapper_test import OpMapperTest from op_mapper_test import OpMapperTest
import paddle
class TestScatterOp(OpMapperTest): class TestScatterOp(OpMapperTest):
def init_input_data(self): def init_input_data(self):
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -13,8 +13,10 @@ ...@@ -13,8 +13,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest from op_mapper_test import OpMapperTest
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,7 +15,9 @@ ...@@ -15,7 +15,9 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
from op_mapper_test import OpMapperTest from op_mapper_test import OpMapperTest
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -15,8 +15,10 @@ ...@@ -15,8 +15,10 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np import numpy as np
from op_mapper_test import OpMapperTest, logger from op_mapper_test import OpMapperTest, logger
import paddle import paddle
......
...@@ -12,18 +12,19 @@ ...@@ -12,18 +12,19 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import logging
import os
import struct
import unittest import unittest
from contextlib import contextmanager
import numpy as np
from cinn import Target from cinn import Target
from cinn.frontend import *
from cinn.common import * from cinn.common import *
from cinn.frontend import *
from cinn.runtime import seed as cinn_seed from cinn.runtime import seed as cinn_seed
import numpy as np
import paddle
import logging
from contextlib import contextmanager
import os
import struct import paddle
logging.basicConfig(level=os.environ.get('LOG_LEVEL', 'INFO').upper()) logging.basicConfig(level=os.environ.get('LOG_LEVEL', 'INFO').upper())
logger = logging.getLogger(name="op_test") logger = logging.getLogger(name="op_test")
......
...@@ -12,14 +12,13 @@ ...@@ -12,14 +12,13 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import sys
import argparse import argparse
import itertools import itertools
import unittest
import re import re
import sys
import unittest
from typing import List, Union
from unittest import suite from unittest import suite
from typing import Union, List
parser = argparse.ArgumentParser(description="Argparse for op test helper") parser = argparse.ArgumentParser(description="Argparse for op test helper")
parser.add_argument( parser.add_argument(
......
...@@ -15,11 +15,13 @@ ...@@ -15,11 +15,13 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -13,13 +13,15 @@ ...@@ -13,13 +13,15 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -13,13 +13,15 @@ ...@@ -13,13 +13,15 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -13,12 +13,13 @@ ...@@ -13,12 +13,13 @@
# limitations under the License. # limitations under the License.
import numpy as np import numpy as np
import paddle
from cinn.common import * from cinn.common import *
from cinn.frontend import * from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle
@OpTestTool.skip_if( @OpTestTool.skip_if(
not is_compiled_with_cuda(), "x86 test will be skipped due to timeout." not is_compiled_with_cuda(), "x86 test will be skipped due to timeout."
......
...@@ -14,12 +14,13 @@ ...@@ -14,12 +14,13 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import paddle
from cinn.frontend import *
from cinn.common import * from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle
@OpTestTool.skip_if( @OpTestTool.skip_if(
not is_compiled_with_cuda(), "x86 test will be skipped due to timeout." not is_compiled_with_cuda(), "x86 test will be skipped due to timeout."
......
...@@ -15,13 +15,15 @@ ...@@ -15,13 +15,15 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
import paddle import paddle
import paddle.nn.functional as F import paddle.nn.functional as F
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -14,13 +14,14 @@ ...@@ -14,13 +14,14 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -13,13 +13,15 @@ ...@@ -13,13 +13,15 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -12,11 +12,12 @@ ...@@ -12,11 +12,12 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -13,13 +13,15 @@ ...@@ -13,13 +13,15 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -13,13 +13,15 @@ ...@@ -13,13 +13,15 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -14,14 +14,17 @@ ...@@ -14,14 +14,17 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import unittest, sys import sys
import unittest
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -15,12 +15,14 @@ ...@@ -15,12 +15,14 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -13,14 +13,15 @@ ...@@ -13,14 +13,15 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import numpy as np from struct import pack, unpack
from op_test import OpTest, OpTestTool
import paddle
import cinn import cinn
from cinn.frontend import * import numpy as np
from cinn.common import * from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool
from struct import pack, unpack import paddle
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -13,11 +13,12 @@ ...@@ -13,11 +13,12 @@
# limitations under the License. # limitations under the License.
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -14,14 +14,16 @@ ...@@ -14,14 +14,16 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import sys
import unittest import unittest
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
import sys
class TestBroadcastToOp(OpTest): class TestBroadcastToOp(OpTest):
......
...@@ -14,11 +14,12 @@ ...@@ -14,11 +14,12 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -15,13 +15,15 @@ ...@@ -15,13 +15,15 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -14,13 +14,14 @@ ...@@ -14,13 +14,14 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import paddle
import numpy as np import numpy as np
from cinn.common import * from cinn.common import *
from cinn.frontend import * from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle
@OpTestTool.skip_if( @OpTestTool.skip_if(
not is_compiled_with_cuda(), "x86 test will be skipped due to timeout." not is_compiled_with_cuda(), "x86 test will be skipped due to timeout."
......
...@@ -14,12 +14,13 @@ ...@@ -14,12 +14,13 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import paddle
from cinn.common import * from cinn.common import *
from cinn.frontend import * from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle
@OpTestTool.skip_if( @OpTestTool.skip_if(
not is_compiled_with_cuda(), "x86 test will be skipped due to timeout." not is_compiled_with_cuda(), "x86 test will be skipped due to timeout."
......
...@@ -15,12 +15,13 @@ ...@@ -15,12 +15,13 @@
# limitations under the License. # limitations under the License.
import numpy as np import numpy as np
import paddle
from cinn.common import * from cinn.common import *
from cinn.frontend import * from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle
@OpTestTool.skip_if( @OpTestTool.skip_if(
not is_compiled_with_cuda(), "x86 test will be skipped due to timeout." not is_compiled_with_cuda(), "x86 test will be skipped due to timeout."
......
...@@ -15,12 +15,13 @@ ...@@ -15,12 +15,13 @@
# limitations under the License. # limitations under the License.
import numpy as np import numpy as np
import paddle
from cinn.common import * from cinn.common import *
from cinn.frontend import * from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle
INT32_MAX = (1 << 31) - 1 INT32_MAX = (1 << 31) - 1
INT32_MIN = -(1 << 31) INT32_MIN = -(1 << 31)
INT64_MAX = (1 << 63) - 1 INT64_MAX = (1 << 63) - 1
......
...@@ -12,12 +12,13 @@ ...@@ -12,12 +12,13 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import paddle
from cinn.frontend import *
from cinn.common import * from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle
@OpTestTool.skip_if( @OpTestTool.skip_if(
not is_compiled_with_cuda(), "x86 test will be skipped due to timeout." not is_compiled_with_cuda(), "x86 test will be skipped due to timeout."
......
...@@ -14,12 +14,13 @@ ...@@ -14,12 +14,13 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import paddle
from cinn.common import * from cinn.common import *
from cinn.frontend import * from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle
@OpTestTool.skip_if( @OpTestTool.skip_if(
not is_compiled_with_cuda(), "x86 test will be skipped due to timeout." not is_compiled_with_cuda(), "x86 test will be skipped due to timeout."
......
...@@ -14,12 +14,13 @@ ...@@ -14,12 +14,13 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import paddle
from cinn.common import * from cinn.common import *
from cinn.frontend import * from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle
@OpTestTool.skip_if( @OpTestTool.skip_if(
not is_compiled_with_cuda(), "x86 test will be skipped due to timeout." not is_compiled_with_cuda(), "x86 test will be skipped due to timeout."
......
...@@ -13,17 +13,18 @@ ...@@ -13,17 +13,18 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import cinn
import numpy as np
import paddle
import unittest import unittest
from cinn.frontend import * import cinn
import numpy as np
from cinn.common import * from cinn.common import *
from cinn.frontend import *
from cinn.runtime import * from cinn.runtime import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle
set_cinn_cudnn_deterministic(True) set_cinn_cudnn_deterministic(True)
paddle.fluid.set_flags({'FLAGS_cudnn_deterministic': 1}) paddle.fluid.set_flags({'FLAGS_cudnn_deterministic': 1})
......
...@@ -14,13 +14,14 @@ ...@@ -14,13 +14,14 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -14,13 +14,14 @@ ...@@ -14,13 +14,14 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -12,13 +12,14 @@ ...@@ -12,13 +12,14 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import cinn
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import paddle.nn as nn import paddle.nn as nn
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -14,12 +14,13 @@ ...@@ -14,12 +14,13 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import paddle
from cinn.frontend import *
from cinn.common import * from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle
@OpTestTool.skip_if( @OpTestTool.skip_if(
not is_compiled_with_cuda(), "x86 test will be skipped due to timeout." not is_compiled_with_cuda(), "x86 test will be skipped due to timeout."
......
...@@ -13,13 +13,15 @@ ...@@ -13,13 +13,15 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -14,13 +14,14 @@ ...@@ -14,13 +14,14 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -14,13 +14,14 @@ ...@@ -14,13 +14,14 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -14,11 +14,12 @@ ...@@ -14,11 +14,12 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
...@@ -14,13 +14,14 @@ ...@@ -14,13 +14,14 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import paddle
import numpy as np import numpy as np
from cinn.common import * from cinn.common import *
from cinn.frontend import * from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle
@OpTestTool.skip_if( @OpTestTool.skip_if(
not is_compiled_with_cuda(), "x86 test will be skipped due to timeout." not is_compiled_with_cuda(), "x86 test will be skipped due to timeout."
......
...@@ -15,14 +15,16 @@ ...@@ -15,14 +15,16 @@
# limitations under the License. # limitations under the License.
import unittest import unittest
import cinn
import numpy as np import numpy as np
from cinn.common import *
from cinn.frontend import *
from op_test import OpTest, OpTestTool from op_test import OpTest, OpTestTool
from op_test_helper import TestCaseHelper from op_test_helper import TestCaseHelper
import paddle import paddle
import paddle.nn.functional as F import paddle.nn.functional as F
import cinn
from cinn.frontend import *
from cinn.common import *
@OpTestTool.skip_if( @OpTestTool.skip_if(
......
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册