def test(request, silent=True): veriloggen.reset() simtype = request.config.getoption('--sim') rslt = onnx_matrix_linear.run( act_shape, weight_shape, bias_shape, scale_shape, act_dtype, weight_dtype, bias_dtype, scale_dtype, with_batchnorm, act_func, disable_fusion, par_left_col, par_left_row, par_out_col, concur_out_col, stationary, chunk_size, axi_datawidth, silent, filename=None, simtype=simtype, outputfile=os.path.splitext(os.path.basename(__file__))[0] + '.out') verify_rslt = rslt.splitlines()[-1] assert (verify_rslt == '# verify: PASSED')
outputfile=os.path.splitext(os.path.basename(__file__))[0] + '.out') verify_rslt = rslt.splitlines()[-1] assert (verify_rslt == '# verify: PASSED') if __name__ == '__main__': rslt = onnx_matrix_linear.run( act_shape, weight_shape, bias_shape, scale_shape, act_dtype, weight_dtype, bias_dtype, scale_dtype, with_batchnorm, act_func, disable_fusion, par_left_col, par_left_row, par_out_col, concur_out_col, stationary, chunk_size, axi_datawidth, silent=False, filename='tmp.v', outputfile=os.path.splitext(os.path.basename(__file__))[0] + '.out') print(rslt)