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