()
| 111 | |
| 112 | |
| 113 | def main(): |
| 114 | if os.path.exists(TRT_MODEL_PATH): |
| 115 | print("TRT-compatible onnx model already exists!") |
| 116 | else: |
| 117 | print("TRT-compatible onnx model not found, generating...") |
| 118 | make_trt_compatible_onnx_model() |
| 119 | |
| 120 | |
| 121 | if __name__ == "__main__": |
no test coverage detected