L9 indicates that your model has 9 unique conv2d workloads. The conv2d with the same shape and attributes will be one task, because they only need to be tuned once.
On the other hand, graph tuner selects the best data layout for each op. It means that even if you have two conv2ds with the same shape, graph tuner might select different data layout for each of them with the consideration of data layout transform overheads with their previous and next ops.
In summary, we can guess your model have 13 conv2d ops, and 4 of them are identical in terms of shapes and attributes.
I see, thanks.
By the way, when comparing the performance between tvm and tensorflow, I find that tensorflow have better performance than tvm even this tuning speed up by 20%.
What adjustments do I need to make? thanks