Skip to content

Commit 212f213

Browse files
committed
big changes
1 parent 1130bd6 commit 212f213

22 files changed

+140
-306
lines changed

Diff for: .github/labeler.yml

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ ci:
1616
core:
1717
- "modules/core/**"
1818
samples:
19-
- "1stsamples/**"
2019
- "modules/ref/**"
2120
3rdparty:
2221
- "3rdparty/**"

Diff for: .github/workflows/main.yml

+18-18
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ jobs:
5656
- name: CMake configure
5757
run: >
5858
cmake -S . -B build
59-
-D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache -DENABLE_MOLD=ON
59+
-D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache -D ENABLE_MOLD=ON
6060
-G Ninja -D USE_SEQ=ON -D USE_MPI=ON -D USE_OMP=ON -D USE_TBB=ON -D USE_STL=ON
6161
-D USE_FUNC_TESTS=ON -D USE_PERF_TESTS=ON
6262
-D CMAKE_BUILD_TYPE=RELEASE
6363
env:
6464
CC: gcc-13
6565
CXX: g++-13
66-
- name: Ninja build
66+
- name: Build project
6767
run: |
6868
cmake --build build
6969
env:
@@ -135,14 +135,14 @@ jobs:
135135
- name: CMake configure
136136
run: >
137137
cmake -S . -B build
138-
-D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache -DENABLE_MOLD=ON
138+
-D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache -D ENABLE_MOLD=ON
139139
-G Ninja -D USE_SEQ=ON -D USE_MPI=ON -D USE_OMP=ON -D USE_TBB=ON -D USE_STL=ON
140140
-D USE_FUNC_TESTS=ON -D USE_PERF_TESTS=ON
141141
-D CMAKE_BUILD_TYPE=RELEASE
142142
env:
143143
CC: gcc-13
144144
CXX: g++-13
145-
- name: Ninja build
145+
- name: Build project
146146
run: |
147147
cmake --build build
148148
env:
@@ -214,7 +214,7 @@ jobs:
214214
env:
215215
CC: clang-19
216216
CXX: clang++-19
217-
- name: Ninja build
217+
- name: Build project
218218
run: |
219219
cmake --build build
220220
env:
@@ -293,7 +293,7 @@ jobs:
293293
env:
294294
CC: clang-19
295295
CXX: clang++-19
296-
- name: Ninja build
296+
- name: Build project
297297
run: |
298298
cmake --build build
299299
env:
@@ -364,7 +364,7 @@ jobs:
364364
env:
365365
CC: clang-19
366366
CXX: clang++-19
367-
- name: Ninja build
367+
- name: Build project
368368
run: |
369369
cmake --build build
370370
env:
@@ -430,7 +430,7 @@ jobs:
430430
env:
431431
CC: clang-19
432432
CXX: clang++-19
433-
- name: Ninja build
433+
- name: Build project
434434
run: |
435435
cmake --build build
436436
env:
@@ -505,7 +505,7 @@ jobs:
505505
-G Ninja -D USE_SEQ=ON -D USE_MPI=ON -D USE_OMP=ON -D USE_TBB=ON -D USE_STL=ON
506506
-DCMAKE_C_FLAGS="-I$(brew --prefix)/opt/libomp/include" -DCMAKE_CXX_FLAGS="-I$(brew --prefix)/opt/libomp/include"
507507
-D CMAKE_BUILD_TYPE=RELEASE -D USE_FUNC_TESTS=ON -D USE_PERF_TESTS=ON
508-
- name: Ninja build
508+
- name: Build project
509509
run: |
510510
cmake --build build
511511
- name: Run func tests (MPI, num_proc=1)
@@ -576,7 +576,7 @@ jobs:
576576
-G Ninja -D USE_SEQ=ON -D USE_MPI=ON -D USE_OMP=ON -D USE_TBB=ON -D USE_STL=ON
577577
-DCMAKE_C_FLAGS="-I$(brew --prefix)/opt/libomp/include" -DCMAKE_CXX_FLAGS="-I$(brew --prefix)/opt/libomp/include"
578578
-D CMAKE_BUILD_TYPE=RELEASE -D USE_FUNC_TESTS=ON -D USE_PERF_TESTS=ON
579-
- name: Ninja build
579+
- name: Build project
580580
run: |
581581
cmake --build build
582582
- name: Run tests (threads, num_threads=5)
@@ -650,7 +650,7 @@ jobs:
650650
-D USE_SEQ=ON -D USE_MPI=ON -D USE_OMP=ON -D USE_TBB=ON -D USE_STL=ON
651651
-D USE_FUNC_TESTS=ON -D USE_PERF_TESTS=ON
652652
-D CMAKE_BUILD_TYPE=RELEASE
653-
- name: MSBuild
653+
- name: Build project
654654
shell: bash
655655
run: |
656656
cmake --build build --config Release --parallel
@@ -708,7 +708,7 @@ jobs:
708708
-D USE_SEQ=ON -D USE_MPI=ON -D USE_OMP=ON -D USE_TBB=ON -D USE_STL=ON
709709
-D USE_FUNC_TESTS=ON -D USE_PERF_TESTS=ON
710710
-D CMAKE_BUILD_TYPE=RELEASE
711-
- name: MSBuild
711+
- name: Build project
712712
shell: bash
713713
run: |
714714
cmake --build build --config Release --parallel
@@ -773,7 +773,7 @@ jobs:
773773
env:
774774
CC: clang-cl
775775
CXX: clang-cl
776-
- name: Ninja build
776+
- name: Build project
777777
run: |
778778
cmake --build build --config Release --parallel -v
779779
env:
@@ -827,7 +827,7 @@ jobs:
827827
env:
828828
CC: clang-cl
829829
CXX: clang-cl
830-
- name: Ninja build
830+
- name: Build project
831831
run: |
832832
cmake --build build --config Release --parallel -v
833833
env:
@@ -896,11 +896,11 @@ jobs:
896896
run: >
897897
cmake -S . -B build
898898
-G Ninja -D USE_SEQ=ON -D USE_MPI=ON -D USE_OMP=ON -D USE_TBB=ON -D USE_STL=ON
899-
-D USE_FUNC_TESTS=ON -D USE_PERF_TESTS=ON -DENABLE_MOLD=ON
899+
-D USE_FUNC_TESTS=ON -D USE_PERF_TESTS=ON -D ENABLE_MOLD=ON
900900
-D CMAKE_BUILD_TYPE=RELEASE
901901
-D CMAKE_VERBOSE_MAKEFILE=ON
902902
-D USE_COVERAGE=ON
903-
- name: Ninja build
903+
- name: Build project
904904
run: |
905905
cmake --build build --parallel
906906
- name: Run tests (MPI)
@@ -975,14 +975,14 @@ jobs:
975975
- name: CMake configure
976976
run: >
977977
cmake -S . -B build
978-
-D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache -DENABLE_MOLD=ON
978+
-D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache -D ENABLE_MOLD=ON
979979
-G Ninja -D USE_SEQ=ON -D USE_MPI=ON -D USE_OMP=ON -D USE_TBB=ON -D USE_STL=ON
980980
-D USE_FUNC_TESTS=ON -D USE_PERF_TESTS=ON
981981
-D CMAKE_BUILD_TYPE=RELEASE
982982
env:
983983
CC: gcc-12
984984
CXX: g++-12
985-
- name: Ninja build
985+
- name: Build project
986986
run: |
987987
cmake --build build
988988
env:

Diff for: 1stsamples/CMakeLists.txt

-7
This file was deleted.

Diff for: 1stsamples/mpi/CMakeLists.txt

-17
This file was deleted.

Diff for: 1stsamples/mpi/main.cpp

-25
This file was deleted.

Diff for: 1stsamples/mpi_boost/CMakeLists.txt

-22
This file was deleted.

Diff for: 1stsamples/mpi_boost/main.cpp

-19
This file was deleted.

Diff for: 1stsamples/omp/CMakeLists.txt

-8
This file was deleted.

Diff for: 1stsamples/omp/main.cpp

-12
This file was deleted.

Diff for: 1stsamples/stl/CMakeLists.txt

-8
This file was deleted.

Diff for: 1stsamples/stl/main.cpp

-23
This file was deleted.

Diff for: 1stsamples/tbb/CMakeLists.txt

-12
This file was deleted.

Diff for: 1stsamples/tbb/main.cpp

-20
This file was deleted.

0 commit comments

Comments
 (0)