test_randint_op.py 2.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#!/usr/bin/env python3

# Copyright (c) 2023 CINN 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.

from random import seed
import unittest
import numpy as np
from op_test import OpTest, OpTestTool
import paddle
import cinn
from cinn.frontend import *
from cinn.common import *


27 28 29
@OpTestTool.skip_if(
    not is_compiled_with_cuda(), "x86 test will be skipped due to timeout."
)
30 31 32 33 34 35 36 37 38 39 40 41 42
class TestRandIntOp(OpTest):
    def setUp(self):
        self.init_case()

    def init_case(self):
        self.shape = [2, 3]
        self.min = 0
        self.max = 5
        self.seed = 10
        self.dtype = "int32"

    def build_paddle_program(self, target):
        out = paddle.randint(
43 44
            shape=self.shape, low=self.min, high=self.max, dtype=self.dtype
        )
45 46 47 48
        self.paddle_outputs = [out]

    def build_cinn_program(self, target):
        builder = NetBuilder("randint")
49 50 51
        out = builder.randint(
            self.shape, self.min, self.max, self.seed, self.dtype
        )
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
        prog = builder.build()
        res = self.get_cinn_output(prog, target, [], [], [out], passes=[])
        self.cinn_outputs = [res[0]]

    def test_check_results(self):
        # Due to the different random number generation numbers implemented
        # in the specific implementation, the random number results generated
        # by CINN and Paddle are not the same, but they all conform to the
        # uniform distribution.
        # self.check_outputs_and_grads()
        self.build_paddle_program(self.target)
        self.build_cinn_program(self.target)


class TestRandIntCase1(TestRandIntOp):
    def init_case(self):
        self.shape = [2, 3, 4]
        self.min = 0
        self.max = 8
        self.seed = 10
        self.dtype = "int32"


class TestRandIntCase2(TestRandIntOp):
    def init_case(self):
        self.shape = [2, 3, 4]
        self.min = -2
        self.max = 3
        self.seed = 8
        self.dtype = "int64"


if __name__ == "__main__":
    unittest.main()