mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 03:00:14 +08:00
0e151e3c88
G-API: Advanced device selection for ONNX DirectML Execution Provider #24060 ### Overview Extend `cv::gapi::onnx::ep::DirectML` to accept `adapter name` as `ctor` parameter in order to select execution device by `name`. E.g: ``` pp.cfgAddExecutionProvider(cv::gapi::onnx::ep::DirectML("Intel Graphics")); ``` ### 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 CMake
14 lines
366 B
CMake
14 lines
366 B
CMake
if(WIN32)
|
|
try_compile(__VALID_DIRECTML
|
|
"${OpenCV_BINARY_DIR}"
|
|
"${OpenCV_SOURCE_DIR}/cmake/checks/directml.cpp"
|
|
LINK_LIBRARIES d3d12 dxcore directml
|
|
OUTPUT_VARIABLE TRY_OUT
|
|
)
|
|
if(NOT __VALID_DIRECTML)
|
|
message(STATUS "No support for DirectML (d3d12, dxcore, directml libs are required)")
|
|
return()
|
|
endif()
|
|
set(HAVE_DIRECTML ON)
|
|
endif()
|