TF 1.15 and FusedBatchNormV3

I noticed that TF 1.15 uses FusedBatchNormV3 instead of FusedBatchNorm in models such as Resnet. E.g. Resnet50 uses 49 FusedBatchNormV3

Looks like Relay TF frontend does not support FusedBatchNormV3 yet.

It means that if Resnet model frozen .pb file is created using TF 1.15 it can not be compiled with TVM.

@apivovarov, would you be able to contribute this op?

V3 has one extra output in comparison to noV or V2 - reserve_space_3 https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/fused-batch-norm-v3 https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/fused-batch-norm https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/fused-batch-norm-v2

We should probably ask people who added fused-batch-norm and fused-batch-norm-v2 to relay TF frontend to look into it.

@jonso Do you think things like this (which seems esoteric to me) is better suited for a custom conversion map, something similar to the one I added for torch? https://github.com/apache/incubator-tvm/pull/4961