1# Copyright 2016 Google Inc. All Rights Reserved. 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS-IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15global: 16 max_runs: 20 17 max_hours_per_combination: 2 18 19# These values are ignored, they are here just to be referenced below. 20constants: 21 compilers: &compilers 22 - "g++-9" 23 - "clang++-10" 24 num_classes: &num_classes 25 - 100 26 27benchmarks: 28 - name: "fruit_single_file_compile_time" 29 num_bindings: 30 - 20 31 - 80 32 compiler: *compilers 33 cxx_std: "c++11" 34 additional_cmake_args: 35 - [] 36 benchmark_generation_flags: 37 - [] 38 39 - name: 40 - "fruit_compile_time" 41 - "fruit_compile_memory" 42 - "fruit_incremental_compile_time" 43 - "fruit_run_time" 44 - "fruit_startup_time" 45 - "fruit_startup_time_with_normalized_component" 46 - "fruit_executable_size" 47 loop_factor: 1.0 48 num_classes: *num_classes 49 compiler: *compilers 50 cxx_std: "c++11" 51 additional_cmake_args: 52 - [] 53 benchmark_generation_flags: 54 - [] 55 56 - name: 57 - "fruit_executable_size_without_exceptions_and_rtti" 58 loop_factor: 1.0 59 num_classes: *num_classes 60 compiler: *compilers 61 cxx_std: "c++11" 62 additional_cmake_args: 63 - ['-DCMAKE_CXX_FLAGS=-fno-exceptions -fno-rtti'] 64 benchmark_generation_flags: 65 - [] 66