SWDEV-461072 - Add reference to function parameter

Change-Id: I9ad5dafc6d697d12fbd1675f19f88f83ad2d7b9c


[ROCm/clr commit: 3a5cbb91b9]
Tento commit je obsažen v:
Anusha GodavarthySurya
2024-06-06 09:43:14 +00:00
odevzdal Anusha Godavarthy Surya
rodič 2897632ad9
revize 44ef705022
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
+1 -1
Zobrazit soubor
@@ -579,7 +579,7 @@ void UpdateStream(std::vector<std::vector<Node>>& parallelLists, hip::Stream* st
}
}
hipError_t EnqueueGraphWithSingleList(std::vector<hip::Node> topoOrder, hip::Stream* hip_stream,
hipError_t EnqueueGraphWithSingleList(std::vector<hip::Node>& topoOrder, hip::Stream* hip_stream,
hip::GraphExec* graphExec) {
// Accumulate command tracks all the AQL packet batch that we submit to the HW. For now
// we track only kernel nodes.
+1 -1
Zobrazit soubor
@@ -52,7 +52,7 @@ hipError_t FillCommands(std::vector<std::vector<Node>>& parallelLists,
amd::Command*& graphEnd, hip::Stream* stream);
void UpdateStream(std::vector<std::vector<Node>>& parallelLists, hip::Stream* stream,
GraphExec* ptr);
hipError_t EnqueueGraphWithSingleList(std::vector<hip::Node> topoOrder, hip::Stream* hip_stream,
hipError_t EnqueueGraphWithSingleList(std::vector<hip::Node>& topoOrder, hip::Stream* hip_stream,
hip::GraphExec* graphExec = nullptr);
struct UserObject : public amd::ReferenceCountedObject {
typedef void (*UserCallbackDestructor)(void* data);