19 lines
407 B
C
19 lines
407 B
C
#ifndef LITE_AI_CONFIG_H
|
|
#define LITE_AI_CONFIG_H
|
|
|
|
//这个用于在cmake时构建config.h
|
|
|
|
#cmakedefine ENABLE_ONNXRUNTIME
|
|
#cmakedefine ENABLE_MNN
|
|
#cmakedefine ENABLE_NCNN
|
|
#cmakedefine ENABLE_TNN
|
|
#cmakedefine ENABLE_ONNXRUNTIME_CUDA
|
|
#cmakedefine ENABLE_OPENCV_VIDEOIO
|
|
#cmakedefine BACKEND_ONNXRUNTIME
|
|
#cmakedefine BACKEND_MNN
|
|
#cmakedefine BACKEND_NCNN
|
|
#cmakedefine BACKEND_TNN
|
|
|
|
#endif //LITE_AI_CONFIG_H
|
|
|