# Copyright 2019 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 tensorio import compare_tensor from akg.utils import kernel_exec as utils from test_op.prob_program import distr_normal_diag_sample_ad from gen_random import random_gaussian def sample_ad_run(shape, dtype, kernel_name="", attrs=None): expects, head, mean, scale, eps, outputs = gen_data(dtype, shape) mod = utils.op_build_test(distr_normal_diag_sample_ad.normal_diag_sample_ad, [head.shape, mean.shape, scale.shape, eps.shape], [dtype, dtype, dtype, dtype], kernel_name=kernel_name, op_attrs=None, attrs=None, log_cce=True, dump_code=True, polyhedral=True) outputs = utils.mod_launch(mod, [head, mean, scale, eps, *outputs], outputs=tuple(range(-len(outputs), 0)), expect=expects) outputs = list(outputs) return (head, mean, scale, eps), outputs, expects, compare_tensor(outputs, expects, rtol=5e-03, atol=0.1, equal_nan=True) def gen_data(dtype, shape): support_list = {"float16": np.float16, "float32": np.float32} m, k = shape mean = random_gaussian((k,), miu=1, sigma=0.1).astype(support_list[dtype]) scale = random_gaussian((k,), miu=1, sigma=0.1).astype(support_list[dtype]) eps = random_gaussian((m, k), miu=0, sigma=1).astype(support_list[dtype]) head = random_gaussian((m, k), miu=1, sigma=0.1).astype(support_list[dtype]) output1 = np.full((k, ), 0.0, dtype) output2 = np.full((k, ), 0.0, dtype) expect_mean = np.sum(head, axis=0) expect_sigma = np.sum(eps * head, axis=0) expects = (expect_mean, expect_sigma) return expects, head, mean, scale, eps, (output1, output2)