| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include <cstddef> | ||
| 4 | #include <string> | ||
| 5 | #include <tuple> | ||
| 6 | #include <vector> | ||
| 7 | |||
| 8 | #include "task/include/task.hpp" | ||
| 9 | |||
| 10 | namespace zorin_d_strassen_alg_matrix_seq { | ||
| 11 | |||
| 12 |
2/4✓ Branch 1 taken 224 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 224 times.
✗ Branch 5 not taken.
|
224 | struct MatMulInput { |
| 13 | std::size_t n{}; | ||
| 14 | std::vector<double> a; | ||
| 15 | std::vector<double> b; | ||
| 16 | }; | ||
| 17 | |||
| 18 | using InType = MatMulInput; | ||
| 19 | using OutType = std::vector<double>; | ||
| 20 | using TestType = std::tuple<int, std::string>; | ||
| 21 | using BaseTask = ppc::task::Task<InType, OutType>; | ||
| 22 | |||
| 23 | } // namespace zorin_d_strassen_alg_matrix_seq | ||
| 24 |