diff options
author | Ray Kinsella <mdr@ashroe.eu> | 2022-03-03 16:40:30 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2022-03-29 10:10:48 +0000 |
commit | 53e575ce8a495d132b41ef9b2f1f6b70299a8134 (patch) | |
tree | 0ab1583871c9e507941c0bea475efabe3f3f79bc /src/plugins/perfmon | |
parent | 81878a9e3cc2c2524c7165edacc1d72d559a1f05 (diff) |
perfmon: fix order in cmakelists.txt
Fix ordering in CMakeLists.txt
Type: refactor
Signed-off-by: Ray Kinsella <mdr@ashroe.eu>
Change-Id: I8e71e4fbc048a80c4b250c2a66cfd8a522bde5f4
Diffstat (limited to 'src/plugins/perfmon')
-rw-r--r-- | src/plugins/perfmon/CMakeLists.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/plugins/perfmon/CMakeLists.txt b/src/plugins/perfmon/CMakeLists.txt index 65c8e4bd126..c7b2a384cc2 100644 --- a/src/plugins/perfmon/CMakeLists.txt +++ b/src/plugins/perfmon/CMakeLists.txt @@ -23,21 +23,21 @@ add_vpp_plugin(perfmon perfmon.c intel/core.c intel/uncore.c - intel/bundle/backend_bound_mem.c intel/bundle/backend_bound_core.c + intel/bundle/backend_bound_mem.c + intel/bundle/branch_mispred.c + intel/bundle/cache_hit_miss.c + intel/bundle/frontend_bound_bw_src.c + intel/bundle/frontend_bound_bw_uops.c + intel/bundle/frontend_bound_lat.c + intel/bundle/iio_bw.c intel/bundle/inst_and_clock.c intel/bundle/load_blocks.c intel/bundle/mem_bw.c - intel/bundle/cache_hit_miss.c - intel/bundle/branch_mispred.c intel/bundle/power_license.c - intel/bundle/topdown_metrics.c intel/bundle/topdown_icelake.c + intel/bundle/topdown_metrics.c intel/bundle/topdown_tremont.c - intel/bundle/frontend_bound_bw_src.c - intel/bundle/frontend_bound_bw_uops.c - intel/bundle/frontend_bound_lat.c - intel/bundle/iio_bw.c COMPONENT vpp-plugin-devtools |