doc: Fix doxygen comments for in-out params

[ROCm/ROCR-Runtime commit: 4c2dec5bb8]
This commit is contained in:
David Yat Sin
2025-07-07 21:44:29 +00:00
committed by Yat Sin, David
parent a8e7d69b18
commit 4e069fe72b
5 changed files with 16 additions and 16 deletions
@@ -107,26 +107,26 @@ class GpuAgentInt : public core::Agent {
// @brief Carve scratch memory for main from scratch pool.
//
// @param [in/out] scratch Structure to be populated with the carved memory
// @param [in,out] scratch Structure to be populated with the carved memory
// information.
virtual void AcquireQueueMainScratch(ScratchInfo &scratch) = 0;
// @brief Carve scratch memory for alt from scratch pool.
//
// @param [in/out] scratch Structure to be populated with the carved memory
// @param [in,out] scratch Structure to be populated with the carved memory
// information.
virtual void AcquireQueueAltScratch(ScratchInfo &scratch) = 0;
// @brief Release scratch memory from main back to scratch pool.
//
// @param [in/out] scratch Scratch memory previously acquired with call to
// @param [in,out] scratch Scratch memory previously acquired with call to
// ::AcquireQueueMainScratch.
virtual void ReleaseQueueMainScratch(ScratchInfo &base) = 0;
// @brief Release scratch memory back from alternate to scratch pool.
//
// @param [in/out] scratch Scratch memory previously acquired with call to
// ::AcquireQueueAltcratch.
// @param [in,out] scratch Scratch memory previously acquired with call to
// ::AcquireQueueAltScratch.
virtual void ReleaseQueueAltScratch(ScratchInfo &base) = 0;
// @brief Translate the kernel start and end dispatch timestamp from agent