I convert a vit model from onnx, and then run relay.build
with tvm.transform.PassContext(opt_level=3):
lib = relay.build(mod, target=target, params=params)
and then meet an error like this: ptxas error : Entry function ‘tvmgen_default_fused_nn_conv2d_kernel0’ uses too much shared data (0x6d68c bytes, 0xc000 max)
i use tvm-0.9 and cuda-10.1 and gcc-7.3
i’m a newcomer for tvm , and how can i fix this problem .
Thanks!