| 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 bortsova_a_transmission_gather { | ||
| 10 | |||
| 11 |
1/2✓ Branch 1 taken 30 times.
✗ Branch 2 not taken.
|
90 | struct Input { |
| 12 | std::vector<double> send_data; | ||
| 13 | int root = 0; | ||
| 14 | }; | ||
| 15 | |||
| 16 |
1/8✓ Branch 0 taken 30 times.
✗ Branch 1 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
✗ Branch 8 not taken.
|
90 | struct Output { |
| 17 | std::vector<double> recv_data; | ||
| 18 | }; | ||
| 19 | |||
| 20 | using InType = Input; | ||
| 21 | using OutType = Output; | ||
| 22 | using TestType = std::tuple<int, std::string>; | ||
| 23 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 24 | |||
| 25 | } // namespace bortsova_a_transmission_gather | ||
| 26 |