What is the difference between tvm.tir.const and ir_builder.allocate_const in TVM graph construction using tir?

What is the difference between tvm.tir.const and ir_builder.allocate_const in TVM? I have tried to directly use TIR for graph construction, but I am not sure when to use tvm.tir.const and when to use ir_builder.allocate_const. Thanks!

tir.const should be used when we want to represent a constant immediate. We do not recommend alloc_const was used to create an allocation that associates with some constant array.

Although we do not recommend using it, since it is not compatible with many tir schedules. Instead, we encourage passing the relevant constant in as a buffer when possible. Then do allocation at graph level

1 Like

Thanks a lot. @tqchen Really appreciate it!