1 // 2 // CoreMLDefine.h 3 // MNN 4 // 5 // Created by MNN on 2021/05/14. 6 // Copyright © 2018, Alibaba Group Holding Limited 7 // 8 9 #ifndef CoreMLDefine_h 10 #define CoreMLDefine_h 11 12 13 #ifdef MNN_COREML_ENABLED 14 #if !defined(__APPLE__) 15 #undef MNN_COREML_ENABLED 16 #define MNN_COREML_ENABLED 0 17 #else 18 #import <CoreML/CoreML.h> 19 #import <Metal/Metal.h> 20 #import <Foundation/Foundation.h> 21 #endif 22 23 #if (TARGET_OS_IPHONE && TARGET_OS_SIMULATOR) 24 #undef MNN_COREML_ENABLED 25 #define MNN_COREML_ENABLED 0 26 #endif 27 28 #endif 29 30 #endif /* CoreMLDefine_h */ 31