Tensorflow 2 and TensorRT frozen graph

Recently in our project we moved from Tensorflow 1.15 to Tensorflow 2.1. Until we were using Tensorflow 1.15 we were able to optimize frozen graph using python script with this guide Accelerating Inference In TF-TRT User Guide :: NVIDIA Deep Learning Frameworks Documentation and save that optimized frozen graph and later use it for inference.
Now with Tensorflow 2 we are facing issues:

  1. It is not possible to use frozen graph for TensorRT optimizations, only saved model.
  2. It is not possible to separate optimizations from the inference (is_dynamic_op=False is not available anymore)

How to resolve these issues?