| 104 | } |
| 105 | |
| 106 | tensorflow::Status TPUBridge(ModuleOp module, bool enable_logging) { |
| 107 | return RunTPUBridge(module, enable_logging, CreateTPUBridgePipeline); |
| 108 | } |
| 109 | tensorflow::Status TPUBridgeV1Compat(ModuleOp module, bool enable_logging) { |
| 110 | return RunTPUBridge(module, enable_logging, CreateTPUBridgePipelineV1); |
| 111 | } |
nothing calls this directly
no test coverage detected