Lines Matching +full:foo +full:- +full:supply
1 .. SPDX-License-Identifier: GPL-2.0
8 the Clang compiler. AutoFDO (Auto-Feedback-Directed Optimization)
9 is a type of profile-guided optimization (PGO) used to enhance the
16 for workloads affected by front-end stalls.
18 For AutoFDO builds, unlike non-FDO builds, the user must supply a
28 performance-critical codes are architecture-independent, the profile
80 - For enabling a single file (e.g. foo.o) ::
84 - For enabling all files in one directory ::
88 - For disabling one file ::
92 - For disabling all files in one directory ::
112 $ scripts/config -e AUTOFDO_CLANG
120 3) Run the load tests. The '-c' option in perf specifies the sample
124 - For Intel platforms::
126 $ perf record -e BR_INST_RETIRED.NEAR_TAKEN:k -a -N -b -c <count> -o <perf_file> -- <loadtest>
128 - For AMD platforms:
142 …$ perf record --pfm-events RETIRED_TAKEN_BRANCH_INSTRUCTIONS:k -a -N -b -c <count> -o <perf_file> …
155 $ llvm-profgen --kernel --binary=<vmlinux> --perfdata=<perf_file> -o <profile_file>
159 …$ create_llvm_prof --binary=<vmlinux> --profile=<perf_file> --format=extbinary --out=<profile_file>
163 $ llvm-profdata merge -o <profile_file> <profile_1> <profile_2> ... <profile_n>