aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/ClContextSerializer.hpp
blob: 71e2b1f1c946cf758cf326abe85d568cd7a2cb76 (plain)
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
//
// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <arm_compute/core/CL/CLCompileContext.h>

#include <flatbuffers/flatbuffers.h>

namespace armnn
{

class ClContextSerializer
{
public:
    ClContextSerializer()  = default;
    ~ClContextSerializer() = default;

    /// Serializes the CLCompileContext built-in programs
    /// @param [in] clCompileContext The CLCompileContext to be serialized.
    void Serialize(const arm_compute::CLCompileContext& clCompileContext);

    /// Serializes the ClContext to the stream.
    /// @param [stream] the stream to save to
    /// @return true if ClContext is Serialized to the Stream, false otherwise
    bool SaveSerializedToStream(std::ostream& stream);

private:
    /// FlatBufferBuilder to create the CLContext FlatBuffers.
    flatbuffers::FlatBufferBuilder m_FlatBufferBuilder;
};

} // namespace armnn