// 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) 2021 Intel Corporation #ifndef GAPI_STREAMING_ONEVPL_DEVICE_SELECTOR_INTERFACE_HPP #define GAPI_STREAMING_ONEVPL_DEVICE_SELECTOR_INTERFACE_HPP #include #include #include #include #include namespace cv { namespace gapi { namespace wip { namespace onevpl { struct GAPI_EXPORTS IDeviceSelector { using Ptr = std::shared_ptr; struct GAPI_EXPORTS Score { friend struct IDeviceSelector; using Type = int16_t; static constexpr Type MaxActivePriority = std::numeric_limits::max(); static constexpr Type MinActivePriority = 0; static constexpr Type MaxPassivePriority = MinActivePriority - 1; static constexpr Type MinPassivePriority = std::numeric_limits::min(); Score(Type val); ~Score(); operator Type () const; Type get() const; friend bool operator< (Score lhs, Score rhs) { return lhs.get() < rhs.get(); } private: Type value; }; using DeviceScoreTable = std::map; using DeviceContexts = std::vector; virtual ~IDeviceSelector(); virtual DeviceScoreTable select_devices() const = 0; virtual DeviceContexts select_context() = 0; protected: template static Entity create(Args &&...args) { return Entity(std::forward(args)...); } }; } // namespace onevpl } // namespace wip } // namespace gapi } // namespace cv #endif // GAPI_STREAMING_ONEVPL_DEVICE_SELECTOR_INTERFACE_HPP