SWDEV-448163 - Fix doxygen warnings
This is a first batch of doxygen warnings fixes. Signed-off-by: Sebastian Luzynski <Sebastian.Luzynski@amd.com> Change-Id: Iba81d08b15738f80d86626113026e8a7e9cab42b
This commit is contained in:
committato da
Rakesh Roy
parent
53406684ee
commit
ea3508bf46
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
* @}
|
||||
*/
|
||||
|
||||
Fai riferimento in un nuovo problema
Block a user