Skip to content

Commit fe7d9b4

Browse files
authored
Change test tasks api (#64)
* new submodules * change test mpi task * change test mpi task - style * change test mpi task - remove old * change test mpi task - change style * change test mpi task - change style 2 * change test mpi task - change style 3 * change test mpi task - rename .h -> .hpp * change omp test task * change omp test task - fix * change omp test task - fix 2 * change seq test task * run all tests * check style * update tbb task * update std task * update scripts * fix mac script * update run scripts * update run scripts 2 * fix windows * fix lint * fix headers * try to fix clang-tidy * try to fix clang-tidy 2 * try to fix clang-tidy 3 * try to fix clang-tidy 4 * try to fix clang-tidy 5 * try to fix clang-tidy 7 * upgrade msvc omp version * upgrade msvc omp version 2
1 parent 9bda068 commit fe7d9b4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+1553
-711
lines changed

.clang-format

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
Language: Cpp
22
BasedOnStyle: Google
3+
ColumnLimit: 120

.clang-tidy

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ Checks: >
2929
-bugprone-implicit-widening-of-multiplication-result,
3030
-bugprone-unchecked-optional-access,
3131
-clang-analyzer-security.insecureAPI.rand,
32+
-clang-analyzer-optin.cplusplus.UninitializedObject,
33+
-modernize-loop-convert,
3234
3335
WarningsAsErrors: "*"
3436

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
- name: Run tests
121121
run: |
122122
export OMP_NUM_THREADS=4
123-
source scripts/run_mac.sh
123+
source scripts/run.sh
124124
windows-msvc-build:
125125
runs-on: windows-latest
126126
defaults:

.github/workflows/static-analysis-pr.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
id: review
2020
with:
2121
build_dir: build
22-
apt_packages: mpich,libmpich*,mpi*,openmpi-bin,ninja-build,libomp-dev,valgrind
23-
cmake_command: cmake -S . -B build -D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache -G Ninja -D USE_SEQ=ON -D USE_MPI=ON -D USE_OMP=ON -D USE_TBB=ON -D USE_STD=ON -D CMAKE_BUILD_TYPE=RELEASE
22+
apt_packages: mpich,libmpich*,mpi*,openmpi-bin,ninja-build,libomp-16-dev,valgrind
23+
cmake_command: cmake -S . -B build -D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache -G Ninja -D USE_SEQ=ON -D USE_MPI=ON -D USE_OMP=ON -D USE_TBB=ON -D USE_STD=ON -D CMAKE_BUILD_TYPE=RELEASE -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
2424
config_file: .clang-tidy
2525
exclude: 3rdparty
26-
split_workflow: false
26+
split_workflow: true
2727
lgtm_comment_body: ""
2828
env:
29-
CC: gcc-12
30-
CXX: g++-12
29+
CC: clang-16
30+
CXX: clang++-16
3131
- if: steps.review.outputs.total_comments > 0
3232
run: exit 1

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ scripts/variants.csv
88
scripts/variants.xlsx
99
venv*
1010
sln/
11+
.DS_Store

CMakeLists.txt

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
cmake_minimum_required( VERSION 3.25 )
22

3+
project( parallel_programming_course )
34
message( STATUS "Parallel Programming Course" )
45

56
include(cmake/configure.cmake)
@@ -21,9 +22,16 @@ option(USE_OMP OFF)
2122
if( USE_OMP OR USE_SEQ )
2223
find_package( OpenMP )
2324
if( OpenMP_FOUND )
25+
include_directories( ${OpenMP_C_INCLUDE_DIRS} ${OpenMP_CXX_INCLUDE_DIRS} )
2426
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}")
2527
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
2628
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${OpenMP_EXE_LINKER_FLAGS}")
29+
if ( MSVC AND MSVC_VERSION GREATER 1919 )
30+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /openmp:experimental")
31+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /openmp:experimental")
32+
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /openmp:experimental")
33+
add_compile_options(/openmp:experimental)
34+
endif()
2735
else( OpenMP_FOUND )
2836
message(FATAL_ERROR "OpenMP NOT FOUND")
2937
endif( OpenMP_FOUND )

README.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -91,20 +91,14 @@ Navigate to a source code folder.
9191

9292
```
9393
mkdir build && cd build
94-
cmake -D USE_SEQ=ON \
95-
-D USE_MPI=ON \
96-
-D USE_OMP=ON \
97-
-D USE_TBB=ON \
98-
-D USE_STD=ON \
99-
-D USE_STYLE_CHECKER=ON ..
94+
cmake -D USE_SEQ=ON -D USE_MPI=ON -D USE_OMP=ON -D USE_TBB=ON -D USE_STD=ON ..
10095
```
10196
*Help on CMake keys:*
10297
- `-D USE_SEQ=ON` enable `Sequential` labs (based on OpenMP's CMakeLists.txt).
10398
- `-D USE_MPI=ON` enable `MPI` labs.
10499
- `-D USE_OMP=ON` enable `OpenMP` labs.
105100
- `-D USE_TBB=ON` enable `TBB` labs.
106101
- `-D USE_STD=ON` enable `std::thread` labs.
107-
- `-D USE_STYLE_CHECKER=ON` enable style check with build project.
108102

109103
*A corresponding flag can be omitted if it's not needed.*
110104

first_samples/mpi_boost/main.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ int main(int argc, char** argv) {
1212
boost::mpi::communicator world;
1313

1414
world.barrier();
15-
std::cout << "Processor = " << boost::mpi::environment::processor_name()
16-
<< std::endl;
15+
std::cout << "Processor = " << boost::mpi::environment::processor_name() << std::endl;
1716
std::cout << "Rank = " << world.rank() << std::endl;
1817
std::cout << "Number of processors = " << world.size() << std::endl;
1918

2019
return 0;
21-
}
20+
}

modules/core/CMakeLists.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
get_filename_component(ProjectId ${CMAKE_CURRENT_SOURCE_DIR} NAME)
22

33
set(ProjectId "${ProjectId}")
4-
project( ${ProjectId} )
54
message( STATUS "-- " ${ProjectId} )
65

7-
file(GLOB_RECURSE ALL_SOURCE_FILES *.cpp *.h)
6+
file(GLOB_RECURSE ALL_SOURCE_FILES *.cpp *.h *.hpp)
87

98
set(PACK_LIB "${ProjectId}_lib")
109
add_library(${PACK_LIB} STATIC ${ALL_SOURCE_FILES} )

modules/core/include/perf.hpp

+3-6
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,12 @@ class Perf {
3535
void pipeline_run(const std::shared_ptr<PerfAttr>& perfAttr,
3636
const std::shared_ptr<ppc::core::PerfResults>& perfResults);
3737
// Check performance of task's run() function
38-
void task_run(const std::shared_ptr<PerfAttr>& perfAttr,
39-
const std::shared_ptr<ppc::core::PerfResults>& perfResults);
38+
void task_run(const std::shared_ptr<PerfAttr>& perfAttr, const std::shared_ptr<ppc::core::PerfResults>& perfResults);
4039

4140
private:
4241
std::shared_ptr<Task> task;
43-
static void common_run(
44-
const std::shared_ptr<PerfAttr>& perfAttr,
45-
const std::function<void()>& pipeline,
46-
const std::shared_ptr<ppc::core::PerfResults>& perfResults);
42+
static void common_run(const std::shared_ptr<PerfAttr>& perfAttr, const std::function<void()>& pipeline,
43+
const std::shared_ptr<ppc::core::PerfResults>& perfResults);
4744
};
4845

4946
} // namespace core

modules/core/include/task.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ class Task {
5050

5151
private:
5252
std::vector<std::string> functions_order;
53-
std::vector<std::string> right_functions_order = {
54-
"validation", "pre_processing", "run", "post_processing"};
53+
std::vector<std::string> right_functions_order = {"validation", "pre_processing", "run", "post_processing"};
5554
};
5655

5756
} // namespace ppc::core

modules/core/src/perf.cpp

+9-18
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,12 @@
66

77
#include "unapproved/unapproved.h"
88

9-
ppc::core::Perf::Perf(std::shared_ptr<Task> task_) {
10-
set_task(std::move(task_));
11-
}
9+
ppc::core::Perf::Perf(std::shared_ptr<Task> task_) { set_task(std::move(task_)); }
1210

13-
void ppc::core::Perf::set_task(std::shared_ptr<Task> task_) {
14-
task = std::move(task_);
15-
}
11+
void ppc::core::Perf::set_task(std::shared_ptr<Task> task_) { task = std::move(task_); }
1612

17-
void ppc::core::Perf::pipeline_run(
18-
const std::shared_ptr<PerfAttr>& perfAttr,
19-
const std::shared_ptr<ppc::core::PerfResults>& perfResults) {
13+
void ppc::core::Perf::pipeline_run(const std::shared_ptr<PerfAttr>& perfAttr,
14+
const std::shared_ptr<ppc::core::PerfResults>& perfResults) {
2015
common_run(
2116
std::move(perfAttr),
2217
[&]() {
@@ -28,26 +23,22 @@ void ppc::core::Perf::pipeline_run(
2823
std::move(perfResults));
2924
}
3025

31-
void ppc::core::Perf::task_run(
32-
const std::shared_ptr<PerfAttr>& perfAttr,
33-
const std::shared_ptr<ppc::core::PerfResults>& perfResults) {
26+
void ppc::core::Perf::task_run(const std::shared_ptr<PerfAttr>& perfAttr,
27+
const std::shared_ptr<ppc::core::PerfResults>& perfResults) {
3428
task->validation();
3529
task->pre_processing();
3630
common_run(
3731
std::move(perfAttr), [&]() { task->run(); }, std::move(perfResults));
3832
task->post_processing();
3933
}
4034

41-
void ppc::core::Perf::common_run(
42-
const std::shared_ptr<PerfAttr>& perfAttr,
43-
const std::function<void()>& pipeline,
44-
const std::shared_ptr<ppc::core::PerfResults>& perfResults) {
35+
void ppc::core::Perf::common_run(const std::shared_ptr<PerfAttr>& perfAttr, const std::function<void()>& pipeline,
36+
const std::shared_ptr<ppc::core::PerfResults>& perfResults) {
4537
auto begin = std::chrono::high_resolution_clock::now();
4638
for (int i = 0; i < perfAttr->num_running; i++) {
4739
pipeline();
4840
}
4941
auto end = std::chrono::high_resolution_clock::now();
50-
auto duration =
51-
std::chrono::duration_cast<std::chrono::nanoseconds>(end - begin).count();
42+
auto duration = std::chrono::duration_cast<std::chrono::nanoseconds>(end - begin).count();
5243
perfResults->time_sec = duration * 1e-9;
5344
}

modules/core/src/task.cpp

+7-15
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,20 @@ void ppc::core::Task::set_data(std::shared_ptr<TaskData> taskData_) {
99
taskData = std::move(taskData_);
1010
}
1111

12-
std::shared_ptr<ppc::core::TaskData> ppc::core::Task::get_data() const {
13-
return taskData;
14-
}
12+
std::shared_ptr<ppc::core::TaskData> ppc::core::Task::get_data() const { return taskData; }
1513

16-
ppc::core::Task::Task(std::shared_ptr<TaskData> taskData_) {
17-
set_data(std::move(taskData_));
18-
}
14+
ppc::core::Task::Task(std::shared_ptr<TaskData> taskData_) { set_data(std::move(taskData_)); }
1915

2016
void ppc::core::Task::internal_order_test(const std::string& str) {
21-
if (!functions_order.empty() && str == functions_order.back() && str == "run")
22-
return;
17+
if (!functions_order.empty() && str == functions_order.back() && str == "run") return;
2318

2419
functions_order.push_back(str);
2520

2621
for (auto i = 0; i < functions_order.size(); i++) {
27-
if (functions_order[i] !=
28-
right_functions_order[i % right_functions_order.size()]) {
29-
throw std::invalid_argument(
30-
"ORDER OF FUCTIONS IS NOT RIGHT: \n" +
31-
std::string("Serial number: ") + std::to_string(i + 1) + "\n" +
32-
std::string("Yours function: ") + functions_order[i] + "\n" +
33-
std::string("Expected function: ") + right_functions_order[i]);
22+
if (functions_order[i] != right_functions_order[i % right_functions_order.size()]) {
23+
throw std::invalid_argument("ORDER OF FUCTIONS IS NOT RIGHT: \n" + std::string("Serial number: ") +
24+
std::to_string(i + 1) + "\n" + std::string("Yours function: ") + functions_order[i] +
25+
"\n" + std::string("Expected function: ") + right_functions_order[i]);
3426
}
3527
}
3628
}

modules/core/tests/core_tests.cpp

+7-14
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ TEST(core_tests, check_int32_t) {
1313
std::vector<int32_t> out(1, 0);
1414

1515
// Create TaskData
16-
std::shared_ptr<ppc::core::TaskData> taskData =
17-
std::make_shared<ppc::core::TaskData>();
16+
std::shared_ptr<ppc::core::TaskData> taskData = std::make_shared<ppc::core::TaskData>();
1817
taskData->inputs.emplace_back(reinterpret_cast<uint8_t *>(in.data()));
1918
taskData->inputs_count.emplace_back(in.size());
2019
taskData->outputs.emplace_back(reinterpret_cast<uint8_t *>(out.data()));
@@ -36,8 +35,7 @@ TEST(core_tests, check_validate_func) {
3635
std::vector<int32_t> out(2, 0);
3736

3837
// Create TaskData
39-
std::shared_ptr<ppc::core::TaskData> taskData =
40-
std::make_shared<ppc::core::TaskData>();
38+
std::shared_ptr<ppc::core::TaskData> taskData = std::make_shared<ppc::core::TaskData>();
4139
taskData->inputs.emplace_back(reinterpret_cast<uint8_t *>(in.data()));
4240
taskData->inputs_count.emplace_back(in.size());
4341
taskData->outputs.emplace_back(reinterpret_cast<uint8_t *>(out.data()));
@@ -55,8 +53,7 @@ TEST(core_tests, check_double) {
5553
std::vector<double> out(1, 0);
5654

5755
// Create TaskData
58-
std::shared_ptr<ppc::core::TaskData> taskData =
59-
std::make_shared<ppc::core::TaskData>();
56+
std::shared_ptr<ppc::core::TaskData> taskData = std::make_shared<ppc::core::TaskData>();
6057
taskData->inputs.emplace_back(reinterpret_cast<uint8_t *>(in.data()));
6158
taskData->inputs_count.emplace_back(in.size());
6259
taskData->outputs.emplace_back(reinterpret_cast<uint8_t *>(out.data()));
@@ -78,8 +75,7 @@ TEST(core_tests, check_uint8_t) {
7875
std::vector<uint8_t> out(1, 0);
7976

8077
// Create TaskData
81-
std::shared_ptr<ppc::core::TaskData> taskData =
82-
std::make_shared<ppc::core::TaskData>();
78+
std::shared_ptr<ppc::core::TaskData> taskData = std::make_shared<ppc::core::TaskData>();
8379
taskData->inputs.emplace_back(reinterpret_cast<uint8_t *>(in.data()));
8480
taskData->inputs_count.emplace_back(in.size());
8581
taskData->outputs.emplace_back(reinterpret_cast<uint8_t *>(out.data()));
@@ -101,8 +97,7 @@ TEST(core_tests, check_int64_t) {
10197
std::vector<int64_t> out(1, 0);
10298

10399
// Create TaskData
104-
std::shared_ptr<ppc::core::TaskData> taskData =
105-
std::make_shared<ppc::core::TaskData>();
100+
std::shared_ptr<ppc::core::TaskData> taskData = std::make_shared<ppc::core::TaskData>();
106101
taskData->inputs.emplace_back(reinterpret_cast<uint8_t *>(in.data()));
107102
taskData->inputs_count.emplace_back(in.size());
108103
taskData->outputs.emplace_back(reinterpret_cast<uint8_t *>(out.data()));
@@ -124,8 +119,7 @@ TEST(core_tests, check_float) {
124119
std::vector<float> out(1, 0);
125120

126121
// Create TaskData
127-
std::shared_ptr<ppc::core::TaskData> taskData =
128-
std::make_shared<ppc::core::TaskData>();
122+
std::shared_ptr<ppc::core::TaskData> taskData = std::make_shared<ppc::core::TaskData>();
129123
taskData->inputs.emplace_back(reinterpret_cast<uint8_t *>(in.data()));
130124
taskData->inputs_count.emplace_back(in.size());
131125
taskData->outputs.emplace_back(reinterpret_cast<uint8_t *>(out.data()));
@@ -147,8 +141,7 @@ TEST(core_tests, check_wrong_order) {
147141
std::vector<float> out(1, 0);
148142

149143
// Create TaskData
150-
std::shared_ptr<ppc::core::TaskData> taskData =
151-
std::make_shared<ppc::core::TaskData>();
144+
std::shared_ptr<ppc::core::TaskData> taskData = std::make_shared<ppc::core::TaskData>();
152145
taskData->inputs.emplace_back(reinterpret_cast<uint8_t *>(in.data()));
153146
taskData->inputs_count.emplace_back(in.size());
154147
taskData->outputs.emplace_back(reinterpret_cast<uint8_t *>(out.data()));

modules/core/tests/test_task.hpp

+3-6
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,12 @@
1010

1111
#include "core/include/task.hpp"
1212

13-
namespace ppc {
14-
namespace test {
13+
namespace ppc::test {
1514

1615
template <class T>
1716
class TestTask : public ppc::core::Task {
1817
public:
19-
explicit TestTask(std::shared_ptr<ppc::core::TaskData> taskData_)
20-
: Task(taskData_) {}
18+
explicit TestTask(std::shared_ptr<ppc::core::TaskData> taskData_) : Task(taskData_) {}
2119
bool pre_processing() override {
2220
internal_order_test();
2321
input_ = reinterpret_cast<T *>(taskData->inputs[0]);
@@ -49,7 +47,6 @@ class TestTask : public ppc::core::Task {
4947
T *output_{};
5048
};
5149

52-
} // namespace test
53-
} // namespace ppc
50+
} // namespace ppc::test
5451

5552
#endif // MODULES_CORE_TESTS_TEST_TASK_HPP_

modules/reference/average_of_vector_elements/CMakeLists.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
get_filename_component(ProjectId ${CMAKE_CURRENT_SOURCE_DIR} NAME)
22

33
set(ProjectId "${ProjectId}_ref")
4-
project( ${ProjectId} )
54
message( STATUS "-- " ${ProjectId} )
65

7-
file(GLOB_RECURSE ALL_SOURCE_FILES *.cpp *.h)
6+
file(GLOB_RECURSE ALL_SOURCE_FILES *.cpp *.h *.hpp)
87

98
set(PACK_LIB "${ProjectId}_lib")
109
add_library(${PACK_LIB} STATIC ${ALL_SOURCE_FILES} )

modules/reference/average_of_vector_elements/ref_task.hpp

+2-5
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ namespace reference {
1717
template <class InType, class OutType>
1818
class AverageOfVectorElements : public ppc::core::Task {
1919
public:
20-
explicit AverageOfVectorElements(
21-
std::shared_ptr<ppc::core::TaskData> taskData_)
22-
: Task(taskData_) {}
20+
explicit AverageOfVectorElements(std::shared_ptr<ppc::core::TaskData> taskData_) : Task(taskData_) {}
2321
bool pre_processing() override {
2422
internal_order_test();
2523
// Init vectors
@@ -41,8 +39,7 @@ class AverageOfVectorElements : public ppc::core::Task {
4139

4240
bool run() override {
4341
internal_order_test();
44-
average = static_cast<OutType>(
45-
std::accumulate(input_.begin(), input_.end(), 0.0));
42+
average = static_cast<OutType>(std::accumulate(input_.begin(), input_.end(), 0.0));
4643
average /= static_cast<OutType>(taskData->inputs_count[0]);
4744
return true;
4845
}

0 commit comments

Comments
 (0)