Support nop function on graph_executor.c

Hi All, i am new on TVM and while i am trying to run one of my cases found that no support for nop function on graph_executor.c but seems it is supported on graph_executor.cc

on the C file: if (!strcmp(param->func_name, “__nop”) || !strcmp(param->func_name, “__copy”)) { fprintf(stderr, “%s function is not yet supported.”, param->func_name); status = -1; }

while on .cc:

if (param.func_name == “__nop”) { return { {}, arg_ptr}; }

is there any effort to support it on C soon?