Fixing counter collection in tools and enabling tests (#436)

* Fixing coutner colleciton in tools and enabling tests

* fixing tests

* improving coverage on test

* Adding vector operations app

* Fixing tools bug for counter collection

* removing roctx linking
Este commit está contenido en:
Gopesh Bhardwaj
2024-02-06 23:25:07 +05:30
cometido por GitHub
padre f6198f226a
commit 8a25b239bc
Se han modificado 12 ficheros con 358 adiciones y 43 borrados
+4 -1
Ver fichero
@@ -687,8 +687,11 @@ dispatch_callback(rocprofiler_queue_id_t queue_id,
kernel_data.rlock([](const kernel_symbol_data_map_t& kdata,
uint64_t kernel_id_v) { return kdata.at(kernel_id_v); },
kernel_id);
auto is_targeted_kernel = [&kernel_info]() {
// if kernel name is provided by user then by default all kernels in the application are
// targeted
if(tool::get_config().kernel_names.empty()) return true;
for(const auto& name : tool::get_config().kernel_names)
{
if(name == kernel_info.truncated_kernel_name)