mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-19 21:32:23 +00:00
28 lines
764 B
C
28 lines
764 B
C
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
// wrapper for ORT C/C++ API headers
|
|
|
|
#if defined(__clang__)
|
|
#pragma clang diagnostic push
|
|
// ignore clang documentation-related warnings
|
|
// instead, we will rely on Doxygen warnings for the C/C++ API headers
|
|
#pragma clang diagnostic ignored "-Wdocumentation"
|
|
#endif // defined(__clang__)
|
|
|
|
#include "onnxruntime_c_api.h"
|
|
#include "onnxruntime_cxx_api.h"
|
|
|
|
#if __has_include("coreml_provider_factory.h")
|
|
#define ORT_OBJC_API_COREML_EP_AVAILABLE 1
|
|
#else
|
|
#define ORT_OBJC_API_COREML_EP_AVAILABLE 0
|
|
#endif
|
|
|
|
#if ORT_OBJC_API_COREML_EP_AVAILABLE
|
|
#include "coreml_provider_factory.h"
|
|
#endif
|
|
|
|
#if defined(__clang__)
|
|
#pragma clang diagnostic pop
|
|
#endif // defined(__clang__)
|