From ea3508bf466a4d9e48d6948be18b1449a40fe151 Mon Sep 17 00:00:00 2001 From: Sebastian Luzynski Date: Wed, 6 Mar 2024 10:01:55 +0000 Subject: [PATCH] SWDEV-448163 - Fix doxygen warnings This is a first batch of doxygen warnings fixes. Signed-off-by: Sebastian Luzynski Change-Id: Iba81d08b15738f80d86626113026e8a7e9cab42b --- catch/multiproc/hipDeviceTotalMemMproc.cc | 5 +++++ catch/multiproc/hipIpcEventHandle.cc | 5 +++++ catch/multiproc/hipIpcMemAccessTest.cc | 5 +++++ catch/performance/event/hipEventDestroy.cc | 7 ++++++- catch/performance/event/hipEventElapsedTime.cc | 5 +++++ catch/performance/event/hipEventQuery.cc | 5 +++++ catch/performance/event/hipEventRecord.cc | 5 +++++ catch/performance/event/hipEventSynchronize.cc | 5 +++++ catch/performance/kernelLaunch/hipExtLaunchKernel.cc | 5 +++++ .../performance/kernelLaunch/hipLaunchCooperativeKernel.cc | 5 +++++ catch/performance/kernelLaunch/hipLaunchKernel.cc | 5 +++++ catch/performance/kernelLaunch/triple_chevron.cc | 5 +++++ catch/performance/memcpy/hipMemcpy.cc | 5 +++++ catch/performance/memcpy/hipMemcpy2D.cc | 5 +++++ catch/performance/memcpy/hipMemcpy2DAsync.cc | 5 +++++ catch/performance/memcpy/hipMemcpy2DFromArray.cc | 5 +++++ catch/performance/memcpy/hipMemcpy2DFromArrayAsync.cc | 5 +++++ catch/performance/memcpy/hipMemcpy2DToArray.cc | 5 +++++ catch/performance/memcpy/hipMemcpy2DToArrayAsync.cc | 5 +++++ catch/performance/memcpy/hipMemcpy3D.cc | 5 +++++ catch/performance/memcpy/hipMemcpy3DAsync.cc | 5 +++++ catch/performance/memcpy/hipMemcpyAsync.cc | 5 +++++ catch/performance/memcpy/hipMemcpyAtoH.cc | 5 +++++ catch/performance/memcpy/hipMemcpyDtoD.cc | 5 +++++ catch/performance/memcpy/hipMemcpyDtoDAsync.cc | 5 +++++ catch/performance/memcpy/hipMemcpyDtoH.cc | 5 +++++ catch/performance/memcpy/hipMemcpyDtoHAsync.cc | 5 +++++ catch/performance/memcpy/hipMemcpyFromSymbol.cc | 5 +++++ catch/performance/memcpy/hipMemcpyFromSymbolAsync.cc | 5 +++++ catch/performance/memcpy/hipMemcpyHtoA.cc | 5 +++++ catch/performance/memcpy/hipMemcpyHtoD.cc | 5 +++++ catch/performance/memcpy/hipMemcpyHtoDAsync.cc | 5 +++++ catch/performance/memcpy/hipMemcpyParam2D.cc | 5 +++++ catch/performance/memcpy/hipMemcpyParam2DAsync.cc | 5 +++++ catch/performance/memcpy/hipMemcpyToSymbol.cc | 5 +++++ catch/performance/memcpy/hipMemcpyToSymbolAsync.cc | 5 +++++ catch/performance/memcpy/hipMemcpyWithStream.cc | 5 +++++ catch/unit/event/hipEventCreate.cc | 5 +++++ catch/unit/event/hipEventCreateWithFlags.cc | 6 ++++++ 39 files changed, 197 insertions(+), 1 deletion(-) diff --git a/catch/multiproc/hipDeviceTotalMemMproc.cc b/catch/multiproc/hipDeviceTotalMemMproc.cc index 94b2045b6f..ba189a122e 100644 --- a/catch/multiproc/hipDeviceTotalMemMproc.cc +++ b/catch/multiproc/hipDeviceTotalMemMproc.cc @@ -169,4 +169,9 @@ TEST_CASE("Unit_hipDeviceTotalMem_MaskedDevices") { } } +/** + * End doxygen group hipDeviceTotalMem. + * @} + */ + #endif diff --git a/catch/multiproc/hipIpcEventHandle.cc b/catch/multiproc/hipIpcEventHandle.cc index 1e16aaf7cb..22d9b55265 100644 --- a/catch/multiproc/hipIpcEventHandle.cc +++ b/catch/multiproc/hipIpcEventHandle.cc @@ -431,4 +431,9 @@ TEST_CASE("Unit_hipIpcEventHandle_ParameterValidation") { * - @ref Unit_hipIpcEventHandle_ParameterValidation */ +/** + * End doxygen group hipIpcOpenEventHandle. + * @} + */ + #endif diff --git a/catch/multiproc/hipIpcMemAccessTest.cc b/catch/multiproc/hipIpcMemAccessTest.cc index 8750bc4306..74b9f71612 100644 --- a/catch/multiproc/hipIpcMemAccessTest.cc +++ b/catch/multiproc/hipIpcMemAccessTest.cc @@ -271,4 +271,9 @@ TEST_CASE("Unit_hipIpcMemAccess_ParameterValidation") { HIP_CHECK(hipFree(Ad)); } +/** + * End doxygen group hipIpcOpenMemHandle. + * @} + */ + #endif diff --git a/catch/performance/event/hipEventDestroy.cc b/catch/performance/event/hipEventDestroy.cc index 0f3a8f63e0..6db4a94d80 100644 --- a/catch/performance/event/hipEventDestroy.cc +++ b/catch/performance/event/hipEventDestroy.cc @@ -51,4 +51,9 @@ class HipEventDestroyBenchmark : public Benchmark { TEST_CASE("Performance_hipEventDestroy") { HipEventDestroyBenchmark benchmark; benchmark.Run(); -} \ No newline at end of file +} + +/** + * End doxygen group event. + * @} + */ diff --git a/catch/performance/event/hipEventElapsedTime.cc b/catch/performance/event/hipEventElapsedTime.cc index 9c6ac5696b..94ab03a881 100644 --- a/catch/performance/event/hipEventElapsedTime.cc +++ b/catch/performance/event/hipEventElapsedTime.cc @@ -66,3 +66,8 @@ TEST_CASE("Performance_hipEventElapsedTime") { HipEventElapsedTimeBenchmark benchmark; benchmark.Run(); } + +/** + * End doxygen group event. + * @} + */ diff --git a/catch/performance/event/hipEventQuery.cc b/catch/performance/event/hipEventQuery.cc index bc1e0656fe..3622afa3f2 100644 --- a/catch/performance/event/hipEventQuery.cc +++ b/catch/performance/event/hipEventQuery.cc @@ -56,3 +56,8 @@ TEST_CASE("Performance_hipEventQuery") { HipEventQueryBenchmark benchmark; benchmark.Run(); } + +/** + * End doxygen group event. + * @} + */ diff --git a/catch/performance/event/hipEventRecord.cc b/catch/performance/event/hipEventRecord.cc index df5f331b95..face517036 100644 --- a/catch/performance/event/hipEventRecord.cc +++ b/catch/performance/event/hipEventRecord.cc @@ -71,3 +71,8 @@ TEST_CASE("Performance_hipEventRecord") { RunBenchmark(stream.stream()); } } + +/** + * End doxygen group event. + * @} + */ diff --git a/catch/performance/event/hipEventSynchronize.cc b/catch/performance/event/hipEventSynchronize.cc index 422f852501..bc389a590d 100644 --- a/catch/performance/event/hipEventSynchronize.cc +++ b/catch/performance/event/hipEventSynchronize.cc @@ -68,3 +68,8 @@ TEST_CASE("Performance_hipEventSynchronize") { const auto flag = GENERATE(hipEventDefault, hipEventBlockingSync); RunBenchmark(flag); } + +/** + * End doxygen group event. + * @} + */ diff --git a/catch/performance/kernelLaunch/hipExtLaunchKernel.cc b/catch/performance/kernelLaunch/hipExtLaunchKernel.cc index f40bcf2d57..3d6c6745ae 100644 --- a/catch/performance/kernelLaunch/hipExtLaunchKernel.cc +++ b/catch/performance/kernelLaunch/hipExtLaunchKernel.cc @@ -118,3 +118,8 @@ TEST_CASE("Performance_hipExtLaunchKernel") { SECTION("event-based timing") { RunBenchmark(sync); } } } + +/** + * End doxygen group kernelLaunch. + * @} + */ diff --git a/catch/performance/kernelLaunch/hipLaunchCooperativeKernel.cc b/catch/performance/kernelLaunch/hipLaunchCooperativeKernel.cc index 2881422ddf..6376f866ce 100644 --- a/catch/performance/kernelLaunch/hipLaunchCooperativeKernel.cc +++ b/catch/performance/kernelLaunch/hipLaunchCooperativeKernel.cc @@ -128,3 +128,8 @@ TEST_CASE("Performance_hipLaunchCooperativeKernel") { SECTION("event-based timing") { RunBenchmark(sync); } } } + +/** + * End doxygen group kernelLaunch. + * @} + */ diff --git a/catch/performance/kernelLaunch/hipLaunchKernel.cc b/catch/performance/kernelLaunch/hipLaunchKernel.cc index db874d292e..1a305d81e4 100644 --- a/catch/performance/kernelLaunch/hipLaunchKernel.cc +++ b/catch/performance/kernelLaunch/hipLaunchKernel.cc @@ -116,3 +116,8 @@ TEST_CASE("Performance_hipLaunchKernel") { SECTION("event-based timing") { RunBenchmark(sync); } } } + +/** + * End doxygen group kernelLaunch. + * @} + */ diff --git a/catch/performance/kernelLaunch/triple_chevron.cc b/catch/performance/kernelLaunch/triple_chevron.cc index b6abe45027..22168e601d 100644 --- a/catch/performance/kernelLaunch/triple_chevron.cc +++ b/catch/performance/kernelLaunch/triple_chevron.cc @@ -103,3 +103,8 @@ TEST_CASE("Performance_Triple_Chevron") { SECTION("event-based timing") { RunBenchmark(sync); } } } + +/** + * End doxygen group kernelLaunch. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpy.cc b/catch/performance/memcpy/hipMemcpy.cc index d9fd8cf6ba..ab1860df78 100644 --- a/catch/performance/memcpy/hipMemcpy.cc +++ b/catch/performance/memcpy/hipMemcpy.cc @@ -188,3 +188,8 @@ TEST_CASE("Performance_hipMemcpy_DeviceToDevice_DisablePeerAccess") { const auto dst_allocation_type = LinearAllocs::hipMalloc; RunBenchmark(dst_allocation_type, src_allocation_type, allocation_size, hipMemcpyDeviceToDevice); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpy2D.cc b/catch/performance/memcpy/hipMemcpy2D.cc index e4f0302d88..187eed2d1c 100644 --- a/catch/performance/memcpy/hipMemcpy2D.cc +++ b/catch/performance/memcpy/hipMemcpy2D.cc @@ -181,3 +181,8 @@ TEST_CASE("Performance_hipMemcpy2D_DeviceToDevice_EnablePeerAccess") { const auto width = GENERATE(4_KB, 4_MB, 16_MB); RunBenchmark(width, 32, hipMemcpyDeviceToDevice, true); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpy2DAsync.cc b/catch/performance/memcpy/hipMemcpy2DAsync.cc index a93a4aadcf..313075d749 100644 --- a/catch/performance/memcpy/hipMemcpy2DAsync.cc +++ b/catch/performance/memcpy/hipMemcpy2DAsync.cc @@ -186,3 +186,8 @@ TEST_CASE("Performance_hipMemcpy2DAsync_DeviceToDevice_EnablePeerAccess") { const auto width = GENERATE(4_KB, 4_MB, 16_MB); RunBenchmark(width, 32, hipMemcpyDeviceToDevice, true); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpy2DFromArray.cc b/catch/performance/memcpy/hipMemcpy2DFromArray.cc index 15c61f6e43..b86c52db55 100644 --- a/catch/performance/memcpy/hipMemcpy2DFromArray.cc +++ b/catch/performance/memcpy/hipMemcpy2DFromArray.cc @@ -125,3 +125,8 @@ TEST_CASE("Performance_hipMemcpy2DFromArray_DeviceToDevice_EnablePeerAccess") { const auto width = GENERATE(4_KB, 8_KB, 16_KB); RunBenchmark(width, 32, hipMemcpyDeviceToDevice, true); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpy2DFromArrayAsync.cc b/catch/performance/memcpy/hipMemcpy2DFromArrayAsync.cc index 9a56d16e74..3f8f27d13e 100644 --- a/catch/performance/memcpy/hipMemcpy2DFromArrayAsync.cc +++ b/catch/performance/memcpy/hipMemcpy2DFromArrayAsync.cc @@ -131,3 +131,8 @@ TEST_CASE("Performance_hipMemcpy2DFromArrayAsync_DeviceToDevice_EnablePeerAccess const auto width = GENERATE(4_KB, 8_KB, 16_KB); RunBenchmark(width, 32, hipMemcpyDeviceToDevice, true); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpy2DToArray.cc b/catch/performance/memcpy/hipMemcpy2DToArray.cc index 0675ad11d9..858aa7e31b 100644 --- a/catch/performance/memcpy/hipMemcpy2DToArray.cc +++ b/catch/performance/memcpy/hipMemcpy2DToArray.cc @@ -125,3 +125,8 @@ TEST_CASE("Performance_hipMemcpy2DToArray_DeviceToDevice_EnablePeerAccess") { const auto width = GENERATE(4_KB, 8_KB, 16_KB); RunBenchmark(width, 32, hipMemcpyDeviceToDevice, true); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpy2DToArrayAsync.cc b/catch/performance/memcpy/hipMemcpy2DToArrayAsync.cc index d351837e69..ae501a3a0f 100644 --- a/catch/performance/memcpy/hipMemcpy2DToArrayAsync.cc +++ b/catch/performance/memcpy/hipMemcpy2DToArrayAsync.cc @@ -131,3 +131,8 @@ TEST_CASE("Performance_hipMemcpy2DToArrayAsync_DeviceToDevice_EnablePeerAccess") const auto width = GENERATE(4_KB, 8_KB, 16_KB); RunBenchmark(width, 32, hipMemcpyDeviceToDevice, true); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpy3D.cc b/catch/performance/memcpy/hipMemcpy3D.cc index 312043b186..7452fb385a 100644 --- a/catch/performance/memcpy/hipMemcpy3D.cc +++ b/catch/performance/memcpy/hipMemcpy3D.cc @@ -187,3 +187,8 @@ TEST_CASE("Performance_hipMemcpy3D_DeviceToDevice_EnablePeerAccess") { const auto width = GENERATE(4_KB, 4_MB, 16_MB); RunBenchmark(make_hipExtent(width, 16, 4), hipMemcpyDeviceToDevice, true); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpy3DAsync.cc b/catch/performance/memcpy/hipMemcpy3DAsync.cc index e1733e11c1..0b624db6f6 100644 --- a/catch/performance/memcpy/hipMemcpy3DAsync.cc +++ b/catch/performance/memcpy/hipMemcpy3DAsync.cc @@ -190,3 +190,8 @@ TEST_CASE("Performance_hipMemcpy3DAsync_DeviceToDevice_EnablePeerAccess") { const auto width = GENERATE(4_KB, 4_MB, 16_MB); RunBenchmark(make_hipExtent(width, 16, 4), hipMemcpyDeviceToDevice, true); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyAsync.cc b/catch/performance/memcpy/hipMemcpyAsync.cc index b04bbd1b11..4e9716a174 100644 --- a/catch/performance/memcpy/hipMemcpyAsync.cc +++ b/catch/performance/memcpy/hipMemcpyAsync.cc @@ -190,3 +190,8 @@ TEST_CASE("Performance_hipMemcpyAsync_DeviceToDevice_EnablePeerAccess") { const auto dst_allocation_type = LinearAllocs::hipMalloc; RunBenchmark(dst_allocation_type, src_allocation_type, allocation_size, hipMemcpyDeviceToDevice, true); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyAtoH.cc b/catch/performance/memcpy/hipMemcpyAtoH.cc index 25d22ba8b3..597a01bc81 100644 --- a/catch/performance/memcpy/hipMemcpyAtoH.cc +++ b/catch/performance/memcpy/hipMemcpyAtoH.cc @@ -67,3 +67,8 @@ TEST_CASE("Performance_hipMemcpyAtoH") { const auto host_allocation_type = GENERATE(LinearAllocs::malloc, LinearAllocs::hipHostMalloc); RunBenchmark(host_allocation_type, allocation_size); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyDtoD.cc b/catch/performance/memcpy/hipMemcpyDtoD.cc index fc300d1755..eebb2016ba 100644 --- a/catch/performance/memcpy/hipMemcpyDtoD.cc +++ b/catch/performance/memcpy/hipMemcpyDtoD.cc @@ -101,3 +101,8 @@ TEST_CASE("Performance_hipMemcpyDtoD_PeerAccessDisabled") { const auto allocation_size = GENERATE(4_KB, 4_MB, 16_MB); RunBenchmark(allocation_size); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyDtoDAsync.cc b/catch/performance/memcpy/hipMemcpyDtoDAsync.cc index c7b9a86e38..d3448d229b 100644 --- a/catch/performance/memcpy/hipMemcpyDtoDAsync.cc +++ b/catch/performance/memcpy/hipMemcpyDtoDAsync.cc @@ -104,3 +104,8 @@ TEST_CASE("Performance_hipMemcpyDtoDAsync_PeerAccessDisabled") { const auto allocation_size = GENERATE(4_KB, 4_MB, 16_MB); RunBenchmark(allocation_size); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyDtoH.cc b/catch/performance/memcpy/hipMemcpyDtoH.cc index 9f5c0503d2..1385b05c0d 100644 --- a/catch/performance/memcpy/hipMemcpyDtoH.cc +++ b/catch/performance/memcpy/hipMemcpyDtoH.cc @@ -70,3 +70,8 @@ TEST_CASE("Performance_hipMemcpyDtoH") { const auto host_allocation_type = GENERATE(LinearAllocs::malloc, LinearAllocs::hipHostMalloc); RunBenchmark(host_allocation_type, device_allocation_type, allocation_size); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyDtoHAsync.cc b/catch/performance/memcpy/hipMemcpyDtoHAsync.cc index e07b8c2125..9e7daedf76 100644 --- a/catch/performance/memcpy/hipMemcpyDtoHAsync.cc +++ b/catch/performance/memcpy/hipMemcpyDtoHAsync.cc @@ -73,3 +73,8 @@ TEST_CASE("Performance_hipMemcpyDtoHAsync") { const auto host_allocation_type = GENERATE(LinearAllocs::malloc, LinearAllocs::hipHostMalloc); RunBenchmark(host_allocation_type, device_allocation_type, allocation_size); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyFromSymbol.cc b/catch/performance/memcpy/hipMemcpyFromSymbol.cc index 2388192f6b..a5bc7cede8 100644 --- a/catch/performance/memcpy/hipMemcpyFromSymbol.cc +++ b/catch/performance/memcpy/hipMemcpyFromSymbol.cc @@ -114,3 +114,8 @@ TEST_CASE("Performance_hipMemcpyFromSymbol_WithOffset") { size_t offset = GENERATE_REF(0, size / 2); RunBenchmark(array.data() + offset, result.data() + offset, sizeof(int) * (size - offset), offset * sizeof(int)); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyFromSymbolAsync.cc b/catch/performance/memcpy/hipMemcpyFromSymbolAsync.cc index 7eab07577b..79214a0c80 100644 --- a/catch/performance/memcpy/hipMemcpyFromSymbolAsync.cc +++ b/catch/performance/memcpy/hipMemcpyFromSymbolAsync.cc @@ -120,3 +120,8 @@ TEST_CASE("Performance_hipMemcpyFromSymbolAsync_WithOffset") { size_t offset = GENERATE_REF(0, size / 2); RunBenchmark(array.data() + offset, result.data() + offset, sizeof(int) * (size - offset), offset * sizeof(int)); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyHtoA.cc b/catch/performance/memcpy/hipMemcpyHtoA.cc index 2f378f88ae..153e16efc0 100644 --- a/catch/performance/memcpy/hipMemcpyHtoA.cc +++ b/catch/performance/memcpy/hipMemcpyHtoA.cc @@ -67,3 +67,8 @@ TEST_CASE("Performance_hipMemcpyHtoA") { const auto host_allocation_type = GENERATE(LinearAllocs::malloc, LinearAllocs::hipHostMalloc); RunBenchmark(host_allocation_type, allocation_size); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyHtoD.cc b/catch/performance/memcpy/hipMemcpyHtoD.cc index 48989e51f9..726fda9608 100644 --- a/catch/performance/memcpy/hipMemcpyHtoD.cc +++ b/catch/performance/memcpy/hipMemcpyHtoD.cc @@ -68,3 +68,8 @@ TEST_CASE("Performance_hipMemcpyHtoD") { const auto host_allocation_type = GENERATE(LinearAllocs::malloc, LinearAllocs::hipHostMalloc); RunBenchmark(host_allocation_type, device_allocation_type, allocation_size); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyHtoDAsync.cc b/catch/performance/memcpy/hipMemcpyHtoDAsync.cc index f9a468eb8f..7600e0a1b2 100644 --- a/catch/performance/memcpy/hipMemcpyHtoDAsync.cc +++ b/catch/performance/memcpy/hipMemcpyHtoDAsync.cc @@ -72,3 +72,8 @@ TEST_CASE("Performance_hipMemcpyHtoDAsync") { const auto host_allocation_type = GENERATE(LinearAllocs::malloc, LinearAllocs::hipHostMalloc); RunBenchmark(host_allocation_type, device_allocation_type, allocation_size); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyParam2D.cc b/catch/performance/memcpy/hipMemcpyParam2D.cc index ca41c74818..2b794e6e30 100644 --- a/catch/performance/memcpy/hipMemcpyParam2D.cc +++ b/catch/performance/memcpy/hipMemcpyParam2D.cc @@ -186,3 +186,8 @@ TEST_CASE("Performance_hipMemcpyParam2D_DeviceToDevice_EnablePeerAccess") { const auto width = GENERATE(4_KB, 4_MB, 16_MB); RunBenchmark(width, 32, hipMemcpyDeviceToDevice, true); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyParam2DAsync.cc b/catch/performance/memcpy/hipMemcpyParam2DAsync.cc index b83009cc01..ef8e5b2cd2 100644 --- a/catch/performance/memcpy/hipMemcpyParam2DAsync.cc +++ b/catch/performance/memcpy/hipMemcpyParam2DAsync.cc @@ -191,3 +191,8 @@ TEST_CASE("Performance_hipMemcpyParam2DAsync_DeviceToDevice_EnablePeerAccess") { const auto width = GENERATE(4_KB, 4_MB, 16_MB); RunBenchmark(width, 32, hipMemcpyDeviceToDevice, true); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyToSymbol.cc b/catch/performance/memcpy/hipMemcpyToSymbol.cc index b425448e2b..10a76cff06 100644 --- a/catch/performance/memcpy/hipMemcpyToSymbol.cc +++ b/catch/performance/memcpy/hipMemcpyToSymbol.cc @@ -107,3 +107,8 @@ TEST_CASE("Performance_hipMemcpyToSymbol_WithOffset") { size_t offset = GENERATE_REF(0, size / 2); RunBenchmark(array.data() + offset, sizeof(int) * (size - offset), offset * sizeof(int)); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyToSymbolAsync.cc b/catch/performance/memcpy/hipMemcpyToSymbolAsync.cc index d476694330..c1f3f01d55 100644 --- a/catch/performance/memcpy/hipMemcpyToSymbolAsync.cc +++ b/catch/performance/memcpy/hipMemcpyToSymbolAsync.cc @@ -114,3 +114,8 @@ TEST_CASE("Performance_hipMemcpyToSymbolAsync_WithOffset") { size_t offset = GENERATE_REF(0, size / 2); RunBenchmark(array.data() + offset, sizeof(int) * (size - offset), offset * sizeof(int)); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/performance/memcpy/hipMemcpyWithStream.cc b/catch/performance/memcpy/hipMemcpyWithStream.cc index 3ec12ef4f6..97693e72b0 100644 --- a/catch/performance/memcpy/hipMemcpyWithStream.cc +++ b/catch/performance/memcpy/hipMemcpyWithStream.cc @@ -190,3 +190,8 @@ TEST_CASE("Performance_hipMemcpyWithStream_DeviceToDevice_EnablePeerAccess") { const auto dst_allocation_type = LinearAllocs::hipMalloc; RunBenchmark(dst_allocation_type, src_allocation_type, allocation_size, hipMemcpyDeviceToDevice, true); } + +/** + * End doxygen group memcpy. + * @} + */ diff --git a/catch/unit/event/hipEventCreate.cc b/catch/unit/event/hipEventCreate.cc index c4d355f533..99354f1797 100644 --- a/catch/unit/event/hipEventCreate.cc +++ b/catch/unit/event/hipEventCreate.cc @@ -51,3 +51,8 @@ TEST_CASE("Unit_hipEventCreate_Positive") { HIP_CHECK(hipEventDestroy(event)); } + +/** + * End doxygen group hipEventCreate. + * @} + */ diff --git a/catch/unit/event/hipEventCreateWithFlags.cc b/catch/unit/event/hipEventCreateWithFlags.cc index cb3e0d4ed5..1049026862 100644 --- a/catch/unit/event/hipEventCreateWithFlags.cc +++ b/catch/unit/event/hipEventCreateWithFlags.cc @@ -347,4 +347,10 @@ TEST_CASE("Unit_hipEventCreateWithFlags_DefaultFlg_CohHstMem") { eMemoryToTest::eCoherentHostMemory, hipEventDefault); } } + +/** + * End doxygen group hipEventCreateWithFlags. + * @} + */ + #endif