aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/utility/Assert.hpp
blob: 4d2f47b90b2a48d7e848c45d50e16b220dba0b0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <cassert>

namespace armnn
{

#ifndef NDEBUG
#   define ARMNN_ASSERT(COND) assert(COND)
#   define ARMNN_ASSERT_MSG(COND, MSG) assert(COND && MSG)
#else
#   define ARMNN_ASSERT(COND)
#   define ARMNN_ASSERT_MSG(COND, MSG)
#endif

} //namespace armnn