소스 검색

support to enable new_ir on CPU device

gaotingquan 1 년 전
부모
커밋
11d2e39f4a
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      paddlex/modules/base/predictor/utils/paddle_inference_predictor.py

+ 2 - 0
paddlex/modules/base/predictor/utils/paddle_inference_predictor.py

@@ -68,6 +68,8 @@ class _PaddleInferencePredictor(object):
         else:
             assert option.device == "cpu"
             config.disable_gpu()
+            config.enable_new_ir(True)
+            config.enable_new_executor(True)
             if "mkldnn" in option.run_mode:
                 try:
                     config.enable_mkldnn()