Deploy TVM Module using C++ API:check failed: ret == 0 (-1 vs. 0) : Assert fail: (num_args == 3), convolution: num_args should be 3

Deploy TVM Module using C++ API Compiling and optimizing a single operator,python use tvm.build func = tvm.build(sch, args, target=target, name=‘convolution’) tvm::runtime::Module mod = tvm::runtime::Module::LoadFromFile(“model.so”) tvm::runtime::PackedFunc f = mod.GetFunction(“convolution”); tvm::runtime::TVMRetValue ret = f(input, filter, output); check failed: ret == 0 (-1 vs. 0) : Assert fail: (num_args == 3), convolution: num_args should be 3 How to Resolve This Issue