GCC Code Coverage Report


Directory: ./
File: tasks/chaschin_v_broadcast/mpi/include/ops_mpi.hpp
Date: 2026-01-10 02:40:41
Exec Total Coverage
Lines: 0 2 0.0%
Functions: 0 0 -%
Branches: 0 0 -%

Line Branch Exec Source
1 #pragma once
2
3 #include <vector>
4
5 #include "chaschin_v_broadcast/common/include/common.hpp"
6 #include "task/include/task.hpp"
7
8 namespace chaschin_v_broadcast {
9
10 template <typename T>
11 class ChaschinVBroadcastMPI : public BaseTask<T> {
12 public:
13 using InType = std::vector<T>;
14 using OutType = std::vector<T>;
15
16 static constexpr ppc::task::TypeOfTask GetStaticTypeOfTask() {
17 return ppc::task::TypeOfTask::kMPI;
18 }
19
20 explicit ChaschinVBroadcastMPI(const InType &in);
21
22 private:
23 bool ValidationImpl() override;
24 bool PreProcessingImpl() override;
25 bool RunImpl() override;
26 bool PostProcessingImpl() override;
27 };
28
29 } // namespace chaschin_v_broadcast
30