Remove SERVICE_ from ROCPROFILER_SERVICE_* enum vals (#168)

- these are unnecessary and are inconsistent with the name convention of everything else related to callback tracing

[ROCm/rocprofiler-sdk commit: 033fd941e0]
This commit is contained in:
Jonathan R. Madsen
2023-10-31 15:06:03 -05:00
committed by GitHub
parent e4ebd5a22a
commit 57ed1bcfd3
11 changed files with 98 additions and 103 deletions
@@ -43,16 +43,16 @@ struct domain_info;
template <>
struct domain_info<rocprofiler_service_callback_tracing_kind_t>
{
static constexpr size_t none = ROCPROFILER_SERVICE_CALLBACK_TRACING_NONE;
static constexpr size_t last = ROCPROFILER_SERVICE_CALLBACK_TRACING_LAST;
static constexpr size_t none = ROCPROFILER_CALLBACK_TRACING_NONE;
static constexpr size_t last = ROCPROFILER_CALLBACK_TRACING_LAST;
static constexpr auto padding = domain_ops_padding;
};
template <>
struct domain_info<rocprofiler_service_buffer_tracing_kind_t>
{
static constexpr size_t none = ROCPROFILER_SERVICE_BUFFER_TRACING_NONE;
static constexpr size_t last = ROCPROFILER_SERVICE_BUFFER_TRACING_LAST;
static constexpr size_t none = ROCPROFILER_BUFFER_TRACING_NONE;
static constexpr size_t last = ROCPROFILER_BUFFER_TRACING_LAST;
static constexpr auto padding = domain_ops_padding;
};