/home/runner/work/HiCR/HiCR/include/hicr/frontends/channel/fixedSize/mpsc/nonlocking/producer.hpp Source File

HiCR: /home/runner/work/HiCR/HiCR/include/hicr/frontends/channel/fixedSize/mpsc/nonlocking/producer.hpp Source File
HiCR
producer.hpp
Go to the documentation of this file.
1/*
2 * Copyright 2025 Huawei Technologies Co., Ltd.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
24#pragma once
25
26#include <hicr/core/definitions.hpp>
30#include <utility>
31
32namespace HiCR::channel::fixedSize::MPSC::nonlocking
33{
34
41{
42 public:
43
55 Producer(CommunicationManager &communicationManager,
56 std::shared_ptr<GlobalMemorySlot> tokenBuffer,
57 const std::shared_ptr<LocalMemorySlot> &internalCoordinationBuffer,
58 const std::shared_ptr<GlobalMemorySlot> &producerCoordinationBuffer,
59 const size_t tokenSize,
60 const size_t capacity)
61 : fixedSize::SPSC::Producer(communicationManager, std::move(tokenBuffer), internalCoordinationBuffer, producerCoordinationBuffer, tokenSize, capacity)
62 {}
63 ~Producer() = default;
64};
65
66} // namespace HiCR::channel::fixedSize::MPSC::nonlocking
Definition communicationManager.hpp:54
Producer(CommunicationManager &communicationManager, std::shared_ptr< GlobalMemorySlot > tokenBuffer, const std::shared_ptr< LocalMemorySlot > &internalCoordinationBuffer, const std::shared_ptr< GlobalMemorySlot > &producerCoordinationBuffer, const size_t tokenSize, const size_t capacity)
Definition producer.hpp:55
Provides a failure model and corresponding exception classes.
Provides base functionality for a fixed-size MPSC channel over HiCR.
Provides producer functionality for a fixed-size SPSC channel over HiCR.