File: PredicateResult.hpp

package info (click to toggle)
armnn 23.08-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 53,580 kB
  • sloc: cpp: 337,440; python: 4,755; sh: 1,708; makefile: 42; asm: 15; xml: 6
file content (48 lines) | stat: -rw-r--r-- 849 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
// Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once

#include <sstream>

namespace armnn
{

class PredicateResult
{
public:
    explicit PredicateResult(bool result)
        : m_Result(result)
    {}

    PredicateResult(const PredicateResult& predicateResult)
        : m_Result(predicateResult.m_Result)
        , m_Message(predicateResult.m_Message.str())
    {}

    void SetResult(bool newResult)
    {
        m_Result = newResult;
    }

    std::stringstream& Message()
    {
        return m_Message;
    }

    bool operator!() const
    {
        return !m_Result;
    }

    void operator=(PredicateResult otherPredicateResult)
    {
        otherPredicateResult.m_Result = m_Result;
    }

    bool m_Result;
    std::stringstream m_Message;
};

}    // namespace armnn