Fix fanout naming for debug graph
🧪 Test / test (push) Failing after 2m38s

This commit is contained in:
2026-05-09 09:54:40 +02:00
parent da8f4d9926
commit 9acc42b2e9
3 changed files with 35 additions and 8 deletions
+4 -3
View File
@@ -51,9 +51,10 @@ public:
using return_tuple = detail::repeat_tuple_t<T, N>;
using return_raw = return_tuple;
static constexpr std::size_t input_count = 1;
static constexpr std::size_t output_count = N;
static constexpr std::size_t unique_tag = Id;
static constexpr std::size_t input_count = 1;
static constexpr std::size_t output_count = N;
static constexpr std::size_t unique_tag = Id;
static constexpr bool is_fanout_node = true;
explicit FanoutNode(std::size_t fifo_capacity = 5)
: fifo_capacity_(fifo_capacity)