| 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 kopilov_d_vertical_gauss_filter { | ||
| 10 | |||
| 11 |
3/13✗ Branch 0 not taken.
✗ Branch 1 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 560 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
✗ Branch 8 not taken.
✗ Branch 9 not taken.
✓ Branch 10 taken 140 times.
✗ Branch 11 not taken.
✓ Branch 14 taken 1680 times.
✗ Branch 15 not taken.
|
2520 | struct Matrix { |
| 12 | int width = 0; | ||
| 13 | int height = 0; | ||
| 14 | std::vector<std::uint8_t> data; | ||
| 15 | }; | ||
| 16 | |||
| 17 | using InType = Matrix; | ||
| 18 | using OutType = Matrix; | ||
| 19 | using TestType = std::tuple<InType, OutType>; | ||
| 20 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 21 | |||
| 22 | } // namespace kopilov_d_vertical_gauss_filter | ||
| 23 |