-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RFC] Enhance TensorFlow Frontend Control Flow Support #4969
Comments
Just a reminder, to support these models we need some patches for tensor array as well. mask_rcnn seems requiring some more debugging. |
ahh, one more reminder, for all these models, we will have OOM problem for pretty printing after the ANF pass. It is very likely due to more and more intermediate result saved by recursively visiting the AST |
wow, supporting mask rcnn is a great achievement! I was also trying to support mask rcnn in torch, but I was stuck at dynamic nms. https://discuss.tvm.ai/t/supporting-non-maximum-suppresion-op-with-dynamic-output-shape/5818/ Is "pending dynamic NMS PR" going to be useful to pytorch use case? |
great, will take a look. Hopefully the PR would become active soon. |
One blocking issue for dynamic NMS is that it needs to use dynamic strided_slice. However, current fusion pass can't handle dynamic shape well yet. As a result, we can't fuse dynamic strided_slice and have to temporarily mark strided_slice as Opaque. However, this will result in other normal static strided_slice not fused and cause performance issue. Maybe we need to directly handle fusion for dynamic shape. @masahi do you have any idea on how to improve this? |
I'm not familiar with dynamic shape support in Relay, so I cannot comment on how it relates to fusion. But it sounds like a interesting problem. |
This feature is now supported in TVM. |
Summary
In today’s TVM TensorFlow frontend, there is only limited support for control flow, which resulting in difficult in covering TensorFlow object detection models. In this RFC, we will discuss how to improve current TVM TF frontend to fully support TensorFlow control flow.
Solution
Visit TensorFlow Graph Def
Currently TVM parses TensorFlow Graph Def node by node in topological order. However, topological order might not stand any more if control flow is introduced into graph def. We do the following to alter the visiting order:
Parse Control Flow nodes
In TVM, while loop is represented as a recursive function. To convert a TensorFlow while_loop block into a Relay function, the following assumption must stand:
Exit
nodes under the same while_loop must have the same node name prefix as this while loop block, which is got withnode.name.rsplit('/', 1)[0]
. In TensorFlow 1.x, user can specify the name of while_loop, butExit
node prefix is automated generated with ancestor nodes’ names.Merge
,Switch
,NextIteration
andExit
nodes with the same postfix number are belong to the same iteration body. For example,Merge_1
,Switch_1
,NextIteration_1
andExit_1
should refer to the same iteration body. Since these four nodes are generated when user creating while_loop, the postfix number can’t be arbitrarily set.We convert a while loop block to a Relay function with the following method:
Merge
node inside a while_loop block: if it is a direct child of awhile_loop
block, we create a Loop wrapper to start adding all sub-nodes under this loop block. Otherwise, we create a complete branch op with previously stored Switch condition.Enter
node: we simply convert its input node to Relay node.LoopCond
node: we first convert its input node to Relay node. Then we set the converted node as our Loop wrapper condition.Switch
node: we first convert both its input and condition to Relay nodes. If it is a direct child of a while_loop block, we add converted input to loop variable list of the corresponding Loop wrapper. Otherwise, we create a Branch wrapper, set its condition to be converted condition node and add it to a global branch dictionary.Exit
node: we generate Relay function for the corresponding while loop body.Tested models
With above changes(together with pending PR of dynamic NMS), we can convert and compile TensorFlow object detection models. The following models from TensorFlow object detection model zoo are tested:
ssd_mobilenet_v1_coco
ssd_mobilenet_v2_coco
ssd_resnet_50_fpn_coco
mask_rcnn_inception_v2_coco
mask_rcnn_resnet50_atrous_coco
faster_rcnn_resnet50_coco
TODO
Investigate TensorFlow 2.0 control flow and what changes are required.
@tqchen @jroesch @srkreddy1238 @zhiics @yongwww @wweic
The text was updated successfully, but these errors were encountered: