Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix syntax errors for speccpu configs in default_benchmark_config.yaml #4843

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions perfkitbenchmarker/configs/default_benchmark_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ speccpu2017_int_rate_GCC11_O3_x86:
flags:
<<: *speccpu2017_int_rate_flags_base
runspec_config: pkb-gcc-linux-x86.cfg
spec17_gcc_flags: "'-O3 -march=native'"
spec17_gcc_flags: -O3 -march=native
vm_groups:
default:
disk_spec: *default_disk_spec
Expand All @@ -37,7 +37,7 @@ speccpu2017_int_rate_GCC11_OFAST_x86:
flags:
<<: *speccpu2017_int_rate_flags_base
runspec_config: pkb-gcc-linux-x86.cfg
spec17_gcc_flags: "'-Ofast -funroll-loops -flto -ljemalloc -z muldefs -fallow-argument-mismatch -march=native'"
spec17_gcc_flags: -Ofast -funroll-loops -flto -ljemalloc -z muldefs -fallow-argument-mismatch -march=native
vm_groups:
default:
disk_spec: *default_disk_spec
Expand All @@ -47,7 +47,7 @@ speccpu2017_int_rate_GCC11_O3_arm:
flags:
<<: *speccpu2017_int_rate_flags_base
runspec_config: pkb-gcc-linux-aarch64-1.1.0.cfg
spec17_gcc_flags: "'-O3 -mcpu=native'"
spec17_gcc_flags: -O3 -mcpu=native
vm_groups:
default:
disk_spec: *default_disk_spec
Expand All @@ -57,7 +57,7 @@ speccpu2017_int_rate_GCC11_OFAST_arm:
flags:
<<: *speccpu2017_int_rate_flags_base
runspec_config: pkb-gcc-linux-aarch64-1.1.0.cfg
spec17_gcc_flags: "'-Ofast -funroll-loops -flto -ljemalloc -z muldefs -fallow-argument-mismatch -march=native'"
spec17_gcc_flags: -Ofast -funroll-loops -flto -ljemalloc -z muldefs -fallow-argument-mismatch -march=native
vm_groups:
default:
disk_spec: *default_disk_spec
Expand Down