mirror of
https://github.com/opencv/opencv.git
synced 2025-06-18 16:11:50 +08:00

* 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
56 lines
1.5 KiB
C++
56 lines
1.5 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) 2018-2020 Intel Corporation
|
|
|
|
|
|
#ifndef OPENCV_GAPI_OWN_ASSERT_HPP
|
|
#define OPENCV_GAPI_OWN_ASSERT_HPP
|
|
|
|
#include <opencv2/gapi/util/compiler_hints.hpp>
|
|
|
|
#define GAPI_DbgAssertNoOp(expr) { \
|
|
constexpr bool _assert_tmp = false && (expr); \
|
|
cv::util::suppress_unused_warning(_assert_tmp); \
|
|
}
|
|
|
|
#if !defined(GAPI_STANDALONE)
|
|
#include <opencv2/core/base.hpp>
|
|
#define GAPI_Assert CV_Assert
|
|
|
|
#if defined _DEBUG || defined CV_STATIC_ANALYSIS
|
|
# define GAPI_DbgAssert CV_DbgAssert
|
|
#else
|
|
# define GAPI_DbgAssert(expr) GAPI_DbgAssertNoOp(expr)
|
|
#endif
|
|
|
|
#else
|
|
#include <stdexcept>
|
|
#include <sstream>
|
|
#include <opencv2/gapi/util/throw.hpp>
|
|
|
|
namespace detail
|
|
{
|
|
[[noreturn]] inline void assert_abort(const char* str, int line, const char* file, const char* func)
|
|
{
|
|
std::stringstream ss;
|
|
ss << file << ":" << line << ": Assertion " << str << " in function " << func << " failed\n";
|
|
cv::util::throw_error(std::logic_error(ss.str()));
|
|
}
|
|
}
|
|
|
|
#define GAPI_Assert(expr) \
|
|
{ if (!(expr)) ::detail::assert_abort(#expr, __LINE__, __FILE__, __func__); }
|
|
|
|
|
|
#ifdef NDEBUG
|
|
# define GAPI_DbgAssert(expr) GAPI_DbgAssertNoOp(expr)
|
|
#else
|
|
# define GAPI_DbgAssert(expr) GAPI_Assert(expr)
|
|
#endif
|
|
|
|
#endif // GAPI_STANDALONE
|
|
|
|
#endif // OPENCV_GAPI_OWN_ASSERT_HPP
|