mirror of https://github.com/opencv/opencv.git
Merge pull request #24068 from TolyaTalamanov:at/add-onnx-coreml-execution-provider
G-API: Support CoreML Execution Providers for ONNXRT Backend #24068 ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [ ] I agree to contribute to the project under Apache 2 License. - [ ] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [ ] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMakepull/24701/head
parent
14688e95ea
commit
9a47e1764a
9 changed files with 178 additions and 0 deletions
@ -0,0 +1,50 @@ |
|||||||
|
// This file is part of OpenCV project.
|
||||||
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
||||||
|
// of this distribution and at http://opencv.org/license.html.
|
||||||
|
//
|
||||||
|
// Copyright (C) 2023 Intel Corporation
|
||||||
|
|
||||||
|
#include "backends/onnx/coreml_ep.hpp" |
||||||
|
#include "logger.hpp" |
||||||
|
|
||||||
|
#ifdef HAVE_ONNX |
||||||
|
#include <onnxruntime_cxx_api.h> |
||||||
|
|
||||||
|
#ifdef HAVE_ONNX_COREML |
||||||
|
#include "../providers/coreml/coreml_provider_factory.h" |
||||||
|
|
||||||
|
void cv::gimpl::onnx::addCoreMLExecutionProvider(Ort::SessionOptions *session_options, |
||||||
|
const cv::gapi::onnx::ep::CoreML &coreml_ep) { |
||||||
|
uint32_t flags = 0u; |
||||||
|
if (coreml_ep.use_cpu_only) { |
||||||
|
flags |= COREML_FLAG_USE_CPU_ONLY; |
||||||
|
} |
||||||
|
|
||||||
|
if (coreml_ep.enable_on_subgraph) { |
||||||
|
flags |= COREML_FLAG_ENABLE_ON_SUBGRAPH; |
||||||
|
} |
||||||
|
|
||||||
|
if (coreml_ep.enable_only_ane) { |
||||||
|
flags |= COREML_FLAG_ONLY_ENABLE_DEVICE_WITH_ANE; |
||||||
|
} |
||||||
|
|
||||||
|
try { |
||||||
|
OrtSessionOptionsAppendExecutionProvider_CoreML(*session_options, flags); |
||||||
|
} catch (const std::exception &e) { |
||||||
|
std::stringstream ss; |
||||||
|
ss << "ONNX Backend: Failed to enable CoreML" |
||||||
|
<< " Execution Provider: " << e.what(); |
||||||
|
cv::util::throw_error(std::runtime_error(ss.str())); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
#else // HAVE_ONNX_COREML
|
||||||
|
|
||||||
|
void cv::gimpl::onnx::addCoreMLExecutionProvider(Ort::SessionOptions*, |
||||||
|
const cv::gapi::onnx::ep::CoreML&) { |
||||||
|
util::throw_error(std::runtime_error("G-API has been compiled with ONNXRT" |
||||||
|
" without CoreML support")); |
||||||
|
} |
||||||
|
|
||||||
|
#endif // HAVE_ONNX_COREML
|
||||||
|
#endif // HAVE_ONNX
|
@ -0,0 +1,23 @@ |
|||||||
|
// This file is part of OpenCV project.
|
||||||
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
||||||
|
// of this distribution and at http://opencv.org/license.html.
|
||||||
|
//
|
||||||
|
// Copyright (C) 2023 Intel Corporation
|
||||||
|
|
||||||
|
#ifndef OPENCV_GAPI_COREML_EP_HPP |
||||||
|
#define OPENCV_GAPI_COREML_EP_HPP |
||||||
|
|
||||||
|
#include "opencv2/gapi/infer/onnx.hpp" |
||||||
|
#ifdef HAVE_ONNX |
||||||
|
|
||||||
|
#include <onnxruntime_cxx_api.h> |
||||||
|
|
||||||
|
namespace cv { |
||||||
|
namespace gimpl { |
||||||
|
namespace onnx { |
||||||
|
void addCoreMLExecutionProvider(Ort::SessionOptions *session_options, |
||||||
|
const cv::gapi::onnx::ep::CoreML &coreml_ep); |
||||||
|
}}} |
||||||
|
|
||||||
|
#endif // HAVE_ONNX
|
||||||
|
#endif // OPENCV_GAPI_COREML_EP_HPP
|
Loading…
Reference in new issue