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