* TBB executor for GAPI - the sole executor - unit tests for it - no usage in the GAPI at the momnet * TBB executor for GAPI - introduced new overload of execute to explicitly accept tbb::arena argument - added more basic tests - moved arena creation code into tests - * TBB executor for GAPI - fixed compie errors & warnings * TBB executor for GAPI - split all-in-one execute() function into logicaly independant parts * TBB executor for GAPI - used util::variant in in the tile_node * TBB executor for GAPI - moved copy_through_move to separate header - rearranged details staff in proper namespaces - moved all implementation into detail namespace * TBB executor for GAPI - fixed build error with TBB 4.4. - fixed build warnings * TBB executor for GAPI - aligned strings width - fixed spaces in expressions - fixed english grammar - minor improvements * TBB executor for GAPI - added more comments - minor improvements * TBB executor for GAPI - changed ITT_ prefix for macroses to GAPI_ITT * TBB executor for GAPI - no more "unused" warning for GAPI_DbgAssert - changed local assert macro to man onto GAPI_DbgAssert * TBB executor for GAPI - file renamings - changed local assert macro to man onto GAPI_DbgAsse * TBB executor for GAPI - test file renamed - add more comments * TBB executor for GAPI - minor clenups and cosmetic changes * TBB executor for GAPI - minor clenups and cosmetic changes * TBB executor for GAPI - changed spaces and curly braces alignment * TBB executor for GAPI - minor cleanups * TBB executor for GAPI - minor cleanups
60 lines
2.3 KiB
C++
60 lines
2.3 KiB
C++
// 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) 2020 Intel Corporation
|
|
|
|
#ifndef OPENCV_GAPI_GAPI_ITT_HPP
|
|
#define OPENCV_GAPI_GAPI_ITT_HPP
|
|
|
|
//for ITT_NAMED_TRACE_GUARD
|
|
#include <type_traits>
|
|
#include <memory>
|
|
|
|
// FIXME: It seems that this macro is not propagated here by the OpenCV cmake (as this is not core module).
|
|
// (Consider using OpenCV's trace.hpp )
|
|
#ifdef OPENCV_WITH_ITT
|
|
#include <ittnotify.h>
|
|
#endif
|
|
|
|
#include <opencv2/gapi/util/compiler_hints.hpp>
|
|
namespace cv {
|
|
namespace util {
|
|
template< class T >
|
|
using remove_reference_t = typename std::remove_reference<T>::type;
|
|
|
|
// Home brew ScopeGuard
|
|
// D will be called automatically with p as argument when ScopeGuard goes out of scope.
|
|
// call release() on the ScopeGuard object to revoke guard action
|
|
template<typename T, typename D>
|
|
auto make_ptr_guard(T* p, D&& d) -> std::unique_ptr<T, util::remove_reference_t<D>> {
|
|
return {p, std::forward<D>(d)};
|
|
}
|
|
} // namespace util
|
|
|
|
// FIXME: make it more reusable (and move to other place and other namespace)
|
|
namespace gimpl { namespace parallel {
|
|
#ifdef OPENCV_WITH_ITT
|
|
extern const __itt_domain* gapi_itt_domain;
|
|
|
|
namespace {
|
|
auto make_itt_guard = [](__itt_string_handle* h) {
|
|
__itt_task_begin(gapi_itt_domain, __itt_null, __itt_null, (h));
|
|
return util::make_ptr_guard(reinterpret_cast<int*>(1), [](int* ) { __itt_task_end(gapi_itt_domain); });
|
|
};
|
|
} // namespace
|
|
|
|
#define GAPI_ITT_NAMED_TRACE_GUARD(name, h) auto name = cv::gimpl::parallel::make_itt_guard(h); cv::util::suppress_unused_warning(name)
|
|
#else
|
|
struct dumb_guard {void reset(){}};
|
|
#define GAPI_ITT_NAMED_TRACE_GUARD(name, h) cv::gimpl::parallel::dumb_guard name; cv::util::suppress_unused_warning(name)
|
|
#endif
|
|
|
|
#define GAPI_ITT_AUTO_TRACE_GUARD_IMPL_(LINE, h) GAPI_ITT_NAMED_TRACE_GUARD(itt_trace_guard_##LINE, h)
|
|
#define GAPI_ITT_AUTO_TRACE_GUARD_IMPL(LINE, h) GAPI_ITT_AUTO_TRACE_GUARD_IMPL_(LINE, h)
|
|
#define GAPI_ITT_AUTO_TRACE_GUARD(h) GAPI_ITT_AUTO_TRACE_GUARD_IMPL(__LINE__, h)
|
|
}} //gimpl::parallel
|
|
} //namespace cv
|
|
|
|
#endif /* OPENCV_GAPI_GAPI_ITT_HPP */
|