After auto-tvm, i get: WARNING:autotvm:Cannot find config for target=cuda -model=unknown, workload=(‘conv2d’, (1, 64, 262, 262, ‘float32’), (1, 64, 7, 7, ‘float32’), (1, 1), (0, 0), (1, 1), ‘NCHW’, ‘float32’). A fallback configuration is used, which may bring great performance regression.
I try to tune this layer follow https://docs.tvm.ai/tutorials/autotvm/tune_conv2d_cuda.html(N, H, W, CO, CI, KH, KW, strides, padding = 1, 7, 7, 512, 512, 3, 3, (1, 1), (1, 1) task = autotvm.task.create(conv2d_no_batching, args=(N, H, W, CO, CI, KH, KW, strides, padding), target=‘cuda’))
how to set parameter in my case?