File tree 10 files changed +10
-30
lines changed
average_of_vector_elements/include
max_of_vector_elements/include
min_of_vector_elements/include
most_different_neighbor_elements/include
nearest_neighbor_elements/include
num_of_alternations_signs/include
num_of_orderly_violations/include
sum_values_by_rows_matrix/include
vector_dot_product/include
10 files changed +10
-30
lines changed Original file line number Diff line number Diff line change 8
8
9
9
#include " core/task/include/task.hpp"
10
10
11
-
12
11
namespace ppc ::core {
13
12
14
13
struct PerfAttr {
@@ -46,7 +45,6 @@ class Perf {
46
45
const std::shared_ptr<ppc::core::PerfResults>& perf_results);
47
46
};
48
47
49
- } // namespace ppc::core
50
-
48
+ } // namespace ppc::core
51
49
52
50
#endif // MODULES_CORE_INCLUDE_PERF_HPP_
Original file line number Diff line number Diff line change 9
9
10
10
#include " core/task/include/task.hpp"
11
11
12
-
13
12
namespace ppc ::reference {
14
13
15
14
template <class InType , class OutType >
@@ -49,7 +48,6 @@ class AverageOfVectorElements : public ppc::core::Task {
49
48
OutType average_;
50
49
};
51
50
52
- } // namespace ppc::reference
53
-
51
+ } // namespace ppc::reference
54
52
55
53
#endif // MODULES_REFERENCE_AVERAGE_OF_VECTOR_ELEMENTS_REF_TASK_HPP_
Original file line number Diff line number Diff line change 10
10
11
11
#include " core/task/include/task.hpp"
12
12
13
-
14
13
namespace ppc ::reference {
15
14
16
15
template <class InOutType , class IndexType >
@@ -59,7 +58,6 @@ class MaxOfVectorElements : public ppc::core::Task {
59
58
IndexType max_index_;
60
59
};
61
60
62
- } // namespace ppc::reference
63
-
61
+ } // namespace ppc::reference
64
62
65
63
#endif // MODULES_REFERENCE_MAX_OF_VECTOR_ELEMENTS_REF_TASK_HPP_
Original file line number Diff line number Diff line change 10
10
11
11
#include " core/task/include/task.hpp"
12
12
13
-
14
13
namespace ppc ::reference {
15
14
16
15
template <class InOutType , class IndexType >
@@ -59,7 +58,6 @@ class MinOfVectorElements : public ppc::core::Task {
59
58
IndexType min_index_;
60
59
};
61
60
62
- } // namespace ppc::reference
63
-
61
+ } // namespace ppc::reference
64
62
65
63
#endif // MODULES_REFERENCE_MIN_OF_VECTOR_ELEMENTS_REF_TASK_HPP_
Original file line number Diff line number Diff line change 11
11
12
12
#include " core/task/include/task.hpp"
13
13
14
-
15
14
namespace ppc ::reference {
16
15
17
16
template <class InOutType , class IndexType >
@@ -68,7 +67,6 @@ class MostDifferentNeighborElements : public ppc::core::Task {
68
67
IndexType l_elem_index_, r_elem_index_;
69
68
};
70
69
71
- } // namespace ppc::reference
72
-
70
+ } // namespace ppc::reference
73
71
74
72
#endif // MODULES_REFERENCE_MOST_DIFFERENT_NEIGHBOR_ELEMENTS_REF_TASK_HPP_
Original file line number Diff line number Diff line change 11
11
12
12
#include " core/task/include/task.hpp"
13
13
14
-
15
14
namespace ppc ::reference {
16
15
17
16
template <class InOutType , class IndexType >
@@ -68,7 +67,6 @@ class NearestNeighborElements : public ppc::core::Task {
68
67
IndexType l_elem_index_, r_elem_index_;
69
68
};
70
69
71
- } // namespace ppc::reference
72
-
70
+ } // namespace ppc::reference
73
71
74
72
#endif // MODULES_REFERENCE_NEAREST_NEIGHBOR_ELEMENTS_REF_TASK_HPP_
Original file line number Diff line number Diff line change 11
11
12
12
#include " core/task/include/task.hpp"
13
13
14
-
15
14
namespace ppc ::reference {
16
15
17
16
template <class InOutType , class CountType >
@@ -57,7 +56,6 @@ class NumOfAlternationsSigns : public ppc::core::Task {
57
56
CountType num_;
58
57
};
59
58
60
- } // namespace ppc::reference
61
-
59
+ } // namespace ppc::reference
62
60
63
61
#endif // MODULES_REFERENCE_NUM_OF_ALTERNATIONS_SIGNS_REF_TASK_HPP_
Original file line number Diff line number Diff line change 11
11
12
12
#include " core/task/include/task.hpp"
13
13
14
-
15
14
namespace ppc ::reference {
16
15
17
16
template <class InOutType , class CountType >
@@ -58,7 +57,6 @@ class NumOfOrderlyViolations : public ppc::core::Task {
58
57
CountType num_;
59
58
};
60
59
61
- } // namespace ppc::reference
62
-
60
+ } // namespace ppc::reference
63
61
64
62
#endif // MODULES_REFERENCE_NUM_OF_ORDERLY_VIOLATIONS_REF_TASK_HPP_
Original file line number Diff line number Diff line change 9
9
10
10
#include " core/task/include/task.hpp"
11
11
12
-
13
12
namespace ppc ::reference {
14
13
15
14
template <class InOutType , class IndexType >
@@ -57,7 +56,6 @@ class SumValuesByRowsMatrix : public ppc::core::Task {
57
56
std::vector<InOutType> sum_;
58
57
};
59
58
60
- } // namespace ppc::reference
61
-
59
+ } // namespace ppc::reference
62
60
63
61
#endif // MODULES_REFERENCE_SUM_VALUES_BY_ROWS_MATRIX_REF_TASK_HPP_
Original file line number Diff line number Diff line change 9
9
10
10
#include " core/task/include/task.hpp"
11
11
12
-
13
12
namespace ppc ::reference {
14
13
15
14
template <class InOutType >
@@ -52,7 +51,6 @@ class VectorDotProduct : public ppc::core::Task {
52
51
InOutType dor_product_;
53
52
};
54
53
55
- } // namespace ppc::reference
56
-
54
+ } // namespace ppc::reference
57
55
58
56
#endif // MODULES_REFERENCE_VECTOR_DOT_PRODUCT_REF_TASK_HPP_
You can’t perform that action at this time.
0 commit comments