| 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 |