Skip to content

Commit

Permalink
Fix missing cmake dependencies in benchmarks
Browse files Browse the repository at this point in the history
Summary:
Fix missing cmake dependencies of:
* hw_voq_scale_route_add_speed
* hw_voq_scale_route_del_speed
* hw_rx_slow_path_rate

Reviewed By: srikrishnagopu

Differential Revision: D62004295

fbshipit-source-id: 0a893312e17ce6809ec742e1ad72a0af607ca413
  • Loading branch information
maxwindiff authored and facebook-github-bot committed Aug 30, 2024
1 parent 6ec245d commit 40419dc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions cmake/AgentHwBenchmarks.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ add_library(hw_rx_slow_path_rate

target_link_libraries(hw_rx_slow_path_rate
config_factory
copp_test_utils
hw_qos_utils
hw_copp_utils
hw_test_acl_utils
Expand Down Expand Up @@ -393,13 +394,21 @@ add_library(hw_voq_scale_route_add_speed
)

target_link_libraries(hw_voq_scale_route_add_speed
fabric_test_utils
route_scale_gen
voq_test_utils
Folly::folly
Folly::follybenchmark
)

add_library(hw_voq_scale_route_del_speed
fboss/agent/hw/benchmarks/HwVoqScaleRouteDelBenchmark.cpp
)

target_link_libraries(hw_voq_scale_route_del_speed
fabric_test_utils
route_scale_gen
voq_test_utils
Folly::folly
Folly::follybenchmark
)

0 comments on commit 40419dc

Please sign in to comment.