[relay] fails build on stride parameter for hardware target

This makes my code build. Thank you. I tried adding lines one-by-one and the change was at:

with tvm.transform.PassContext(opt_level=3, config=config):
    if USE_CMSIS_NN:
        mod = cmsisnn.partition_for_cmsisnn(mod, params, mcpu=TARGET.mcpu)
    lowered = tvm.relay.build(
        mod, target=TARGET, params=params, runtime=RUNTIME, executor=EXECUTOR
    )

And then passing the lowered build into generate the project. It seems like perhaps the default TFLITE relay builder has some edge case for the stride parameter that CMSIS is able to handle.