|
- # Copyright 2020-2021 Huawei Technologies Co., Ltd
- #
- # 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 numpy as np
- from tests.common.gen_random import random_gaussian
- from akg.utils import kernel_exec as utils
- from akg.utils.result_analysis import gpu_profiling
- from akg.utils.format_transform import to_tvm_nd_array
- from tests.common.tensorio import compare_tensor
- from akg.ops.array_gpu.tile import tile
-
- def gen_data(shape, multiples, dtype):
- support_list = {"float16": np.float16, "float32": np.float32}
- data = random_gaussian(shape, miu=1, sigma=0.1).astype(support_list[dtype])
- expect = np.tile(data, multiples)
- output = np.full(expect.shape, np.nan, dtype)
- return data, output, expect
-
- def test_ms_tile(shape, multiples, dtype, poly_sch=False):
- if poly_sch:
- mod = utils.op_build_test(tile, [shape], [dtype], op_attrs=[multiples], kernel_name="tile", attrs={"target": "cuda"})
-
- data, output, expect = gen_data(shape, multiples, dtype)
- output = utils.mod_launch(mod, (data, output), expect = expect)
- ret = compare_tensor(output, expect, rtol=5e-03, atol=1.e-8, equal_nan=True)
- print("Test {}".format("Pass" if ret else "Failed"))
- if not ret:
- print("Error cuda:========================")
- print(mod.imported_modules[0].get_source())
- raise AssertionError("Test fail")
- data, expect = to_tvm_nd_array([data, expect])
- gpu_profiling(mod, data, expect, 400)
|