How to load a data graph to tvm and run it through graph_executer?

Hi, I am currently trying to laod a data graph with its parameters(not important). I want to use the graphexecuter of tvm to run this data graph. The data graph has the format below

fn (%input0: Tensor[(1, 10), int32], %weight: Tensor[(10, 10), int32], %bias: Tensor[(10), int32]) {
  %0 = nn.dense(%input0, %weight, units=None);
  %1 = nn.bias_add(%0, %bias, axis=-1);
  nn.relu(%1)
}

Is there any function that I could load a datagraph for tvm? Thanks.