Integrated perfetto + roctracer (#5)

- hosttrace library automatically collects and merges timestamps for HIP API calls and kernels with the host-side instrumentation
  - mostly eliminates the need for using external rocprof
- added thread_instruction_count in perfetto output
- increased hosttrace min_loop_address_range to 512
- disabled instrumenting functions with dynamic callsites by default
- miscellaneous cmake updates

* roctracer support

- fully integrated perfetto + roctracer outputs
- thread_instruction_count in perfetto
- increased min_loop_address_range to 512
- disabled instrumenting functions with dynamic callsites by default
- updated timemory submodule

* hosttrace_launch_compiler

- support for using an alternative compiler as needed via launch compiler
- elfio added as submodule (not currently used)
- miscellaneous cmake updates

* README update + host/device categories + misc

- timemory fix for TIMEMORY_ROCTRACER_ENABLED
- transpose fix

* papi_tuple_t -> papi_tot_ins

- minor fix to Findroctracer.cmake
Этот коммит содержится в:
Jonathan R. Madsen
2021-09-06 22:23:24 -05:00
коммит произвёл GitHub
родитель b6e65d69f6
Коммит a061b7947f
23 изменённых файлов: 1119 добавлений и 268 удалений
+1 -1
Просмотреть файл
@@ -272,7 +272,7 @@ find_function(image_t* app_image, const std::string& _name, strset_t _extra)
}
if(!_func)
verbprintf(0, "timemory-run: Unable to find function %s\n", _name.c_str());
verbprintf(2, "hosttrace: Unable to find function %s\n", _name.c_str());
return _func;
}