@ydy Any is not complete yet. Right now we are able to represent model with
dynamic shape in relay. We still need to finish the codegen and runtime change
in order to execute the model.
---
[Visit Topic](https://discuss.tvm.ai/t/how-to-support-tf-tensorarray/1983/7) to
respond.
You are r
If we can get `Any`(https://github.com/dmlc/tvm/issues/3042) merged, I think we
can support TensorArray as follows:
type dynamic_tensor =
Tensor0 of TensorType(shape=())
| Tensor1 of TensorType(shape=(Any))
| Tensor2 of TensorType(shape=(Any, Any))
| Tensor3 of TensorType(shape=(A
I have the same problem. Can it be solved now?
---
[Visit Topic](https://discuss.tvm.ai/t/how-to-support-tf-tensorarray/1983/2) to
respond.
You are receiving this because you enabled mailing list mode.
To unsubscribe from these emails, [click
here](https://discuss.tvm.ai/email/unsubscrib
Document is at https://www.tensorflow.org/api_docs/python/tf/TensorArray
This code snippet generates several tensorflow ops:
[TensorArrayV3, TensorArrayGatherV3, TensorArraySizeV3, TensorArrayWriteV3]
```
tensor_array = tf.TensorArray(dtype=tf.float32, size=1, dynamic_size=True)
tensor_array =