2020-05-27 16:47:07 +02:00
|
|
|
cmake_minimum_required(VERSION 3.12)
|
|
|
|
add_executable (sim_performance
|
|
|
|
sc_main.cpp
|
2020-07-14 10:49:06 +02:00
|
|
|
pkt_sender.cpp
|
|
|
|
pkt_switch.cpp
|
2020-05-27 16:47:07 +02:00
|
|
|
top.cpp
|
|
|
|
)
|
|
|
|
target_link_libraries (sim_performance LINK_PUBLIC scc)
|
|
|
|
target_link_libraries (sim_performance LINK_PUBLIC ${Boost_LIBRARIES} )
|
2021-07-23 13:39:27 +02:00
|
|
|
|
|
|
|
#Mateo Done erst count 16384
|
|
|
|
foreach(x RANGE 1 10)
|
|
|
|
add_test(NAME sim_performance_16x16_${x} COMMAND sim_performance)
|
2021-07-27 20:25:54 +02:00
|
|
|
endforeach()
|
|
|
|
foreach(x RANGE 1 10)
|
2021-11-21 18:07:27 +01:00
|
|
|
add_test(NAME sim_performance_20x20_${x} COMMAND sim_performance --dim 20)
|
|
|
|
endforeach()
|
|
|
|
foreach(x RANGE 1 10)
|
|
|
|
add_test(NAME sim_performance_30x30_${x} COMMAND sim_performance --dim 30)
|
2021-07-23 13:39:27 +02:00
|
|
|
endforeach()
|