We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92c417b commit 457246bCopy full SHA for 457246b
1 file changed
.github/workflows/performance_compare.yml
@@ -20,8 +20,8 @@ jobs:
20
21
- name: Compile Both Algorithms
22
run: |
23
- g++ -O3 -std=c++11 heap_perm.cpp -o heap_test -pthread
24
- g++ -O3 -std=c++11 permpure_full.cpp -o pure_test -pthread
+ g++ -O3 -std=c++11 -march=native -ffast-math -fomit-frame-pointer heap_perm.cpp -o heap_test -pthread
+ g++ -O3 -std=c++11 -march=native -ffast-math -fomit-frame-pointer permpure_full.cpp -o pure_test -pthread
25
26
- name: Execute and Capture Results
27
id: run_tests
0 commit comments