Is there no conv1d support on vela/ethos?

I’m looking at the
code
vela/operation.py
and
https://review.mlplatform.org/plugins/gitiles/ml/ethos-u/ethos-u-vela/+/refs/heads/master/SUPPORTED_OPS.md
file and didn’t see a Conv1d here.

I know we can always convert conv2d to conv1d with kernelW=1.
Just want to confirm.

Correct conv1d is supported by running it as conv2d. This is taken care of when converting your model to TensorFlow Lite format i.e. any conv1d in TF will automatically be changed to Conv2D in TFLite as TFLite doesnt have a Conv1D operator.