Lines Matching +full:merge +full:- +full:stream
2 * Copyright (c) 2018-2020 Arm Limited.
4 * SPDX-License-Identifier: MIT
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
44 /** Stream frontend class to construct simple graphs in a stream fashion */
45 class Stream final : public IStream
50 * @param[in] id Stream id
51 * @param[in] name Stream name
53 Stream(size_t id, std::string name);
55 Stream(const Stream &) = delete;
57 Stream &operator=(const Stream &) = delete;
58 /** Finalizes the stream for an execution target
64 /** Executes the stream **/
77 Graph _g; /**< Internal graph representation of the stream */