Is it possible to generate C code after quantization?

Hi,

I want to generate C Code after applying quantization. I am trying the following:

    with relay.quantize.qconfig():
        qgraph = relay.quantize.quantize(mod[mod.entry_func], params)

    target = "c"
    with relay.build_config(opt_level=3):
        graph, lib, params = relay.build(qgraph, target=target, params=params)

However, I get the following error:

TVMError: Unresolved intrinsic round with return type float32

Thanks