They are different stories.
The C codegen you pointed out in BYOC is only used to demonstrate how BYOC works, so TVM backend for CPU doesn't go through it. Instead, TVM backend for CPU directly generates LLVM IR, so you won't get the generated C source code. Although TVM does have [C codgen base class](https://github.com/apache/incubator-tvm/blob/master/src/target/source/codegen_source_base.h), it is an abstract class and derived for [OpenCL code generation](https://github.com/apache/incubator-tvm/blob/master/src/target/source/codegen_opencl.h) for GPUs. --- [Visit Topic](https://discuss.tvm.apache.org/t/how-can-i-generated-c-code-from-codegen-cc/8002/2) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](https://discuss.tvm.apache.org/email/unsubscribe/46fdcad8f7c9e0b7ca271479e249321a1540dc8facd144bc3a69e6f58fd0d31a).
