def test_no_ie_ngraph(self, mock_find): mock_find.return_value = False with pytest.raises(SystemExit) as e, self.assertLogs(log.getLogger(), level="ERROR") as cm: subprocess_main() assert e.value.code == 1 res = [i for i in cm.output if 'Consider building the Inference Engine and nGraph Python APIs from sources' in i] assert res
#!/usr/bin/env python3 # Copyright (C) 2018-2021 Intel Corporation # SPDX-License-Identifier: Apache-2.0 if __name__ == "__main__": from openvino.tools.mo.subprocess_main import subprocess_main subprocess_main(framework='kaldi')
#!/usr/bin/env python3 # Copyright (C) 2018-2021 Intel Corporation # SPDX-License-Identifier: Apache-2.0 if __name__ == "__main__": from openvino.tools.mo.subprocess_main import subprocess_main subprocess_main(framework='tf')
#!/usr/bin/env python3 # Copyright (C) 2018-2021 Intel Corporation # SPDX-License-Identifier: Apache-2.0 if __name__ == "__main__": from openvino.tools.mo.subprocess_main import subprocess_main subprocess_main(framework='caffe')
#!/usr/bin/env python3 # Copyright (C) 2018-2022 Intel Corporation # SPDX-License-Identifier: Apache-2.0 if __name__ == "__main__": from openvino.tools.mo.subprocess_main import subprocess_main subprocess_main(framework='mxnet')
#!/usr/bin/env python3 # Copyright (C) 2018-2022 Intel Corporation # SPDX-License-Identifier: Apache-2.0 if __name__ == "__main__": from openvino.tools.mo.subprocess_main import subprocess_main subprocess_main(framework='onnx')
# Copyright (C) 2018-2022 Intel Corporation # SPDX-License-Identifier: Apache-2.0 from openvino.tools.mo.subprocess_main import subprocess_main subprocess_main(framework=None)
#!/usr/bin/env python3 # Copyright (C) 2018-2022 Intel Corporation # SPDX-License-Identifier: Apache-2.0 if __name__ == "__main__": from openvino.tools.mo.subprocess_main import subprocess_main subprocess_main(framework='paddle')