| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- # Copyright (c) 2024 PaddlePaddle Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- function(ultra_infer_summary)
- message(STATUS "")
- message(STATUS "*************UltraInfer Building Summary**********")
- message(STATUS " CMake version : ${CMAKE_VERSION}")
- message(STATUS " CMake command : ${CMAKE_COMMAND}")
- message(STATUS " System : ${CMAKE_SYSTEM_NAME}")
- message(STATUS " C++ compiler : ${CMAKE_CXX_COMPILER}")
- message(STATUS " C++ standard : ${CMAKE_CXX_STANDARD}")
- message(STATUS " C++ cuda standard : ${CMAKE_CUDA_STANDARD}")
- message(STATUS " C++ compiler version : ${CMAKE_CXX_COMPILER_VERSION}")
- message(STATUS " CXX flags : ${CMAKE_CXX_FLAGS}")
- message(STATUS " EXE linker flags : ${CMAKE_EXE_LINKER_FLAGS}")
- message(STATUS " Shared linker flags : ${CMAKE_SHARED_LINKER_FLAGS}")
- message(STATUS " Build type : ${CMAKE_BUILD_TYPE}")
- get_directory_property(tmp DIRECTORY ${PROJECT_SOURCE_DIR} COMPILE_DEFINITIONS)
- message(STATUS " Compile definitions : ${tmp}")
- message(STATUS " CMAKE_PREFIX_PATH : ${CMAKE_PREFIX_PATH}")
- message(STATUS " CMAKE_INSTALL_PREFIX : ${CMAKE_INSTALL_PREFIX}")
- message(STATUS " CMAKE_MODULE_PATH : ${CMAKE_MODULE_PATH}")
- message(STATUS "")
- message(STATUS " UltraInfer version : ${ULTRAINFER_VERSION}")
- message(STATUS " ENABLE_ORT_BACKEND : ${ENABLE_ORT_BACKEND}")
- message(STATUS " ENABLE_RKNPU2_BACKEND : ${ENABLE_RKNPU2_BACKEND}")
- message(STATUS " ENABLE_HORIZON_BACKEND : ${ENABLE_HORIZON_BACKEND}")
- message(STATUS " ENABLE_SOPHGO_BACKEND : ${ENABLE_SOPHGO_BACKEND}")
- message(STATUS " ENABLE_PADDLE_BACKEND : ${ENABLE_PADDLE_BACKEND}")
- message(STATUS " ENABLE_LITE_BACKEND : ${ENABLE_LITE_BACKEND}")
- message(STATUS " ENABLE_POROS_BACKEND : ${ENABLE_POROS_BACKEND}")
- message(STATUS " ENABLE_TRT_BACKEND : ${ENABLE_TRT_BACKEND}")
- message(STATUS " ENABLE_OPENVINO_BACKEND : ${ENABLE_OPENVINO_BACKEND}")
- message(STATUS " ENABLE_TVM_BACKEND : ${ENABLE_TVM_BACKEND}")
- message(STATUS " ENABLE_BENCHMARK : ${ENABLE_BENCHMARK}")
- message(STATUS " ENABLE_VISION : ${ENABLE_VISION}")
- message(STATUS " ENABLE_TEXT : ${ENABLE_TEXT}")
- message(STATUS " ENABLE_FLYCV : ${ENABLE_FLYCV}")
- message(STATUS " ENABLE_CVCUDA : ${ENABLE_CVCUDA}")
- message(STATUS " WITH_GPU : ${WITH_GPU}")
- message(STATUS " WITH_IPU : ${WITH_IPU}")
- message(STATUS " WITH_OPENCL : ${WITH_OPENCL}")
- message(STATUS " WITH_TESTING : ${WITH_TESTING}")
- message(STATUS " WITH_ASCEND : ${WITH_ASCEND}")
- message(STATUS " WITH_DIRECTML : ${WITH_DIRECTML}")
- message(STATUS " WITH_TIMVX : ${WITH_TIMVX}")
- message(STATUS " WITH_KUNLUNXIN : ${WITH_KUNLUNXIN}")
- message(STATUS " WITH_CAPI : ${WITH_CAPI}")
- message(STATUS " WITH_CSHARPAPI : ${WITH_CSHARPAPI}")
- if(ENABLE_ORT_BACKEND)
- message(STATUS " ONNXRuntime version : ${ONNXRUNTIME_VERSION}")
- endif()
- if(ENABLE_PADDLE_BACKEND)
- message(STATUS " Paddle Inference version : ${PADDLEINFERENCE_VERSION}")
- endif()
- if(ENABLE_POROS_BACKEND)
- message(STATUS " Poros version : ${POROS_VERSION}")
- endif()
- if(ENABLE_OPENVINO_BACKEND)
- message(STATUS " OpenVINO version : ${OPENVINO_VERSION}")
- endif()
- if(WITH_GPU)
- message(STATUS " CUDA_DIRECTORY : ${CUDA_DIRECTORY}")
- message(STATUS " TRT_DRECTORY : ${TRT_DIRECTORY}")
- endif()
- if (${BUILD_ULTRAINFER_PYTHON})
- message(STATUS " Python executable : ${PYTHON_EXECUTABLE}")
- message(STATUS " Python includes : ${PYTHON_INCLUDE_DIR}")
- endif()
- if(ENABLE_LITE_BACKEND)
- message(STATUS " Paddle Lite version : ${PADDLELITE_VERSION}")
- endif()
- endfunction()
|