报错:

测试报告:http://localhost:63342/MyOperatorp/out/coverage_report/ut_impl/d_c585556f9f416c9f_p_re_lu_impl_py.html
测试代码:
from op_test_frame.ut import OpUT
from mindspore import nn
# [TODO] change op_func_name here
ut_case = OpUT("PReLU", "impl.p_re_lu_impl", "p_re_lu_impl")
def calc_expect_func(x, y, weight):
res = nn.PReLU(x.get("value"),weight.get("value"))
return [res, ]
ut_case.add_precision_case("all", {
"params": [
{"dtype": "float16", "format": "NCHW", "ori_format": "NCHW", "ori_shape": (1,1,1), "shape": (1,1,1),
"param_type": "input"},
{"dtype": "float16", "format": "NCHW", "ori_format": &