From 8fa864cfb495a15539becfc07517349badf93e56 Mon Sep 17 00:00:00 2001 From: morzhovets Date: Sun, 11 Aug 2024 21:28:04 +0400 Subject: [PATCH] Update test configs --- .github/workflows/perf_clang.yml | 2 +- .github/workflows/perf_gcc.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/perf_clang.yml b/.github/workflows/perf_clang.yml index 7c2e344d..a1282010 100644 --- a/.github/workflows/perf_clang.yml +++ b/.github/workflows/perf_clang.yml @@ -65,7 +65,7 @@ jobs: mkdir build clang++-${{ matrix.clang_ver }} -Imomo_v32 -O3 -DNDEBUG -march=native -std=c++17 -o build/momo_${{ matrix.type }}_1 src/momo_${{ matrix.type }}.cc clang++-${{ matrix.clang_ver }} -Imomo_v35 -O3 -DNDEBUG -march=native -std=c++17 -o build/momo_${{ matrix.type }}_2 src/momo_${{ matrix.type }}.cc - clang++-${{ matrix.clang_ver }} -Imomo_v37/include -O3 -DNDEBUG -march=native -std=c++17 -o build/momo_${{ matrix.type }}_3 src/momo_${{ matrix.type }}.cc + clang++-${{ matrix.clang_ver }} -Imomo_v37 -O3 -DNDEBUG -march=native -std=c++17 -o build/momo_${{ matrix.type }}_3 src/momo_${{ matrix.type }}.cc clang++-${{ matrix.clang_ver }} -Imomo_v39/include -O3 -DNDEBUG -march=native -std=c++17 -o build/momo_${{ matrix.type }}_4 src/momo_${{ matrix.type }}.cc clang++-${{ matrix.clang_ver }} -Imomo_cur/include -O3 -DNDEBUG -march=native -std=c++20 -o build/momo_${{ matrix.type }}_0 src/momo_${{ matrix.type }}.cc - name: Test diff --git a/.github/workflows/perf_gcc.yml b/.github/workflows/perf_gcc.yml index 09ab9505..fc432cf0 100644 --- a/.github/workflows/perf_gcc.yml +++ b/.github/workflows/perf_gcc.yml @@ -63,7 +63,7 @@ jobs: mkdir build g++-${{ matrix.gcc_ver }} -Imomo_v32 -O3 -DNDEBUG -march=native -std=c++17 -o build/momo_${{ matrix.type }}_1 src/momo_${{ matrix.type }}.cc g++-${{ matrix.gcc_ver }} -Imomo_v35 -O3 -DNDEBUG -march=native -std=c++17 -o build/momo_${{ matrix.type }}_2 src/momo_${{ matrix.type }}.cc - g++-${{ matrix.gcc_ver }} -Imomo_v37/include -O3 -DNDEBUG -march=native -std=c++17 -o build/momo_${{ matrix.type }}_3 src/momo_${{ matrix.type }}.cc + g++-${{ matrix.gcc_ver }} -Imomo_v37 -O3 -DNDEBUG -march=native -std=c++17 -o build/momo_${{ matrix.type }}_3 src/momo_${{ matrix.type }}.cc g++-${{ matrix.gcc_ver }} -Imomo_v39/include -O3 -DNDEBUG -march=native -std=c++17 -o build/momo_${{ matrix.type }}_4 src/momo_${{ matrix.type }}.cc g++-${{ matrix.gcc_ver }} -Imomo_cur/include -O3 -DNDEBUG -march=native -std=c++20 -o build/momo_${{ matrix.type }}_0 src/momo_${{ matrix.type }}.cc - name: Test