doc: Fix doxygen comments for in-out params

Cette révision appartient à :
David Yat Sin
2025-07-07 21:44:29 +00:00
révisé par Yat Sin, David
Parent 45af009c5d
révision 4c2dec5bb8
5 fichiers modifiés avec 16 ajouts et 16 suppressions
+5 -5
Voir le fichier
@@ -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