GCC Code Coverage Report


Directory: ./
File: tasks/shilin_n_gauss_filter_vertical_split/common/include/common.hpp
Date: 2026-01-27 01:59:34
Exec Total Coverage
Lines: 1 1 100.0%
Functions: 0 0 -%
Branches: 4 7 57.1%

Line Branch Exec Source
1 #pragma once
2
3 #include <cstdint>
4 #include <tuple>
5 #include <vector>
6
7 #include "task/include/task.hpp"
8
9 namespace shilin_n_gauss_filter_vertical_split {
10
11
4/7
✓ Branch 1 taken 63 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 10 times.
✓ Branch 6 taken 60 times.
✗ Branch 7 not taken.
✓ Branch 8 taken 60 times.
✗ Branch 9 not taken.
273 struct ImageData {
12 std::vector<uint8_t> pixels;
13 int width = 0;
14 int height = 0;
15 int channels = 0;
16 };
17
18 using InType = ImageData;
19 using OutType = std::vector<uint8_t>;
20 using TestType = std::tuple<int, int>;
21 using BaseTask = ppc::task::Task<InType, OutType>;
22
23 } // namespace shilin_n_gauss_filter_vertical_split
24