Remove _service from rocprofiler_service_* types (#221)

- this is a continuation of #168 which removed _SERVICE from the ROCPROFILER_SERVICE_ enums

[ROCm/rocprofiler-sdk commit: ca296ff22b]
Этот коммит содержится в:
Jonathan R. Madsen
2023-11-16 04:44:50 -06:00
коммит произвёл GitHub
родитель 2918251d9c
Коммит 7fde39a282
16 изменённых файлов: 215 добавлений и 222 удалений
+2 -2
Просмотреть файл
@@ -82,9 +82,9 @@ struct source_location
};
using call_stack_t = std::vector<source_location>;
using callback_kind_names_t = std::map<rocprofiler_service_callback_tracing_kind_t, const char*>;
using callback_kind_names_t = std::map<rocprofiler_callback_tracing_kind_t, const char*>;
using callback_kind_operation_names_t =
std::map<rocprofiler_service_callback_tracing_kind_t, std::map<uint32_t, const char*>>;
std::map<rocprofiler_callback_tracing_kind_t, std::map<uint32_t, const char*>>;
using wrap_count_t = std::pair<source_location, size_t>;
rocprofiler_client_id_t* client_id = nullptr;