changing pool size from log2 to bytes

This commit is contained in:
Evgeny
2019-02-04 17:57:16 -06:00
rodzic 940fe8e14f
commit 2b0452fd5f
3 zmienionych plików z 3 dodań i 5 usunięć
@@ -247,7 +247,7 @@ void init_tracing() {
std::cout << "# START #############################" << std::endl << std::flush;
// Allocating tracing pool
roctracer_properties_t properties{};
properties.buffer_size = 12;
properties.buffer_size = 0x1000;
properties.buffer_callback_fun = activity_callback;
ROCTRACER_CALL(roctracer_open_pool(&properties));
}