@@ -1353,22 +1353,27 @@ ROCPROFILER_ENUM_INFO(rocprofiler_code_object_operation_t,
13531353 ROCPROFILER_CODE_OBJECT_NONE,
13541354 ROCPROFILER_CODE_OBJECT_LAST,
13551355 false ,
1356- not_operation);
1356+ is_operation);
1357+ ROCPROFILER_ENUM_INFO (rocprofiler_hip_stream_operation_t ,
1358+ ROCPROFILER_HIP_STREAM_NONE,
1359+ ROCPROFILER_HIP_STREAM_LAST,
1360+ false ,
1361+ is_operation);
13571362ROCPROFILER_ENUM_INFO (rocprofiler_memory_copy_operation_t ,
13581363 ROCPROFILER_MEMORY_COPY_NONE,
13591364 ROCPROFILER_MEMORY_COPY_LAST,
13601365 false ,
1361- not_operation );
1366+ is_operation );
13621367ROCPROFILER_ENUM_INFO (rocprofiler_memory_allocation_operation_t ,
13631368 ROCPROFILER_MEMORY_ALLOCATION_NONE,
13641369 ROCPROFILER_MEMORY_ALLOCATION_LAST,
13651370 false ,
1366- not_operation );
1371+ is_operation );
13671372ROCPROFILER_ENUM_INFO (rocprofiler_kernel_dispatch_operation_t ,
13681373 ROCPROFILER_KERNEL_DISPATCH_NONE,
13691374 ROCPROFILER_KERNEL_DISPATCH_LAST,
13701375 false ,
1371- not_operation );
1376+ is_operation );
13721377ROCPROFILER_ENUM_INFO (rocprofiler_pc_sampling_method_t ,
13731378 ROCPROFILER_PC_SAMPLING_METHOD_NONE,
13741379 ROCPROFILER_PC_SAMPLING_METHOD_LAST,
@@ -1661,6 +1666,14 @@ ROCPROFILER_ENUM_LABEL(ROCPROFILER_CODE_OBJECT_DEVICE_KERNEL_SYMBOL_REGISTER);
16611666ROCPROFILER_ENUM_LABEL (ROCPROFILER_CODE_OBJECT_HOST_KERNEL_SYMBOL_REGISTER);
16621667static_assert (ROCPROFILER_CODE_OBJECT_LAST == 4 );
16631668
1669+ // rocprofiler_hip_stream_operation_t
1670+ ROCPROFILER_ENUM_LABEL (ROCPROFILER_HIP_STREAM_NONE);
1671+ ROCPROFILER_ENUM_LABEL (ROCPROFILER_HIP_STREAM_CREATE);
1672+ ROCPROFILER_ENUM_LABEL (ROCPROFILER_HIP_STREAM_DESTROY);
1673+ ROCPROFILER_ENUM_LABEL (ROCPROFILER_HIP_STREAM_SET);
1674+ ROCPROFILER_ENUM_LABEL (ROCPROFILER_HIP_STREAM_LAST);
1675+ static_assert (ROCPROFILER_CODE_OBJECT_LAST == 4 );
1676+
16641677// rocprofiler_memory_copy_operation_t
16651678ROCPROFILER_ENUM_LABEL (ROCPROFILER_MEMORY_COPY_NONE);
16661679ROCPROFILER_ENUM_LABEL (ROCPROFILER_MEMORY_COPY_HOST_TO_HOST);
0 commit comments