GCC Code Coverage Report


Directory: ./
File: tasks/balchunayte_z_dot_product/common/include/common.hpp
Date: 2026-01-27 01:59:34
Exec Total Coverage
Lines: 1 1 100.0%
Functions: 0 0 -%
Branches: 2 4 50.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_dot_product {
10
11
2/4
✓ Branch 1 taken 30 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 30 times.
✗ Branch 5 not taken.
30 struct InType {
12 std::vector<double> a;
13 std::vector<double> b;
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_dot_product
21