[TVM Discuss] [Development] How to support tf.TensorArray()

2019-08-13 Thread Wei Chen via TVM Discuss
@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

[TVM Discuss] [Development] How to support tf.TensorArray()

2019-06-25 Thread Wei Chen via TVM Discuss
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