| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include <cstddef> | ||
| 4 | #include <cstdint> | ||
| 5 | #include <string> | ||
| 6 | #include <tuple> | ||
| 7 | #include <vector> | ||
| 8 | |||
| 9 | #include "task/include/task.hpp" | ||
| 10 | |||
| 11 | namespace batkov_f_image_smoothing { | ||
| 12 | |||
| 13 |
3/12✓ Branch 0 taken 40 times.
✗ Branch 1 not taken.
✓ Branch 3 taken 40 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 40 times.
✗ Branch 8 not taken.
✗ Branch 9 not taken.
✗ Branch 10 not taken.
✗ Branch 11 not taken.
✗ Branch 12 not taken.
|
160 | struct Image { |
| 14 | std::vector<uint8_t> data; | ||
| 15 | size_t width{}; | ||
| 16 | size_t height{}; | ||
| 17 | size_t channels{}; | ||
| 18 | }; | ||
| 19 | |||
| 20 | using InType = Image; | ||
| 21 | using OutType = Image; | ||
| 22 | using TestType = std::tuple<std::string, size_t, size_t, size_t>; | ||
| 23 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 24 | |||
| 25 | } // namespace batkov_f_image_smoothing | ||
| 26 |