GCC Code Coverage Report


Directory: ./
File: tasks/balchunayte_z_reduce/common/include/common.hpp
Date: 2026-01-27 01:59:34
Exec Total Coverage
Lines: 1 1 100.0%
Functions: 0 0 -%
Branches: 3 5 60.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 balchunayte_z_reduce {
10
11
3/5
✓ Branch 1 taken 32 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 40 times.
✓ Branch 5 taken 8 times.
✗ Branch 6 not taken.
120 struct InType {
12 std::vector<double> data;
13 int root;
14 };
15
16 using OutType = double;
17 using TestType = std::tuple<int, std::string>;
18 using BaseTask = ppc::task::Task<InType, OutType>;
19
20 } // namespace balchunayte_z_reduce
21