aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/utility/Assert.hpp
blob: 3c336b36f5e1f01e6e422754c66cf996649d9c33 (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 and Contributors. 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