GCC Code Coverage Report


Directory: ./
File: tasks/vector_scalar_product/common/include/common.hpp
Date: 2026-01-10 02:40:41
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 <vector>
4
5 #include "task/include/task.hpp"
6
7 namespace vector_scalar_product {
8
9
2/4
✓ Branch 1 taken 30 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 30 times.
✗ Branch 5 not taken.
30 struct DotProductInput {
10 std::vector<double> lhs;
11 std::vector<double> rhs;
12 };
13
14 using InType = DotProductInput;
15 using OutType = double;
16 using BaseTask = ppc::task::Task<InType, OutType>;
17
18 } // namespace vector_scalar_product
19