GCC Code Coverage Report


Directory: ./
File: tasks/bortsova_a_transmission_gather/common/include/common.hpp
Date: 2026-01-27 01:59:34
Exec Total Coverage
Lines: 2 2 100.0%
Functions: 0 0 -%
Branches: 2 10 20.0%

Line Branch Exec Source
1 #pragma once
2
3 #include <string>
4 #include <tuple>
5 #include <vector>
6
7 #include "task/include/task.hpp"
8
9 namespace bortsova_a_transmission_gather {
10
11
1/2
✓ Branch 1 taken 30 times.
✗ Branch 2 not taken.
90 struct Input {
12 std::vector<double> send_data;
13 int root = 0;
14 };
15
16
1/8
✓ Branch 0 taken 30 times.
✗ Branch 1 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
✗ Branch 8 not taken.
90 struct Output {
17 std::vector<double> recv_data;
18 };
19
20 using InType = Input;
21 using OutType = Output;
22 using TestType = std::tuple<int, std::string>;
23 using BaseTask = ppc::task::Task<InType, OutType>;
24
25 } // namespace bortsova_a_transmission_gather
26