SWDEV-545952 - API definitions for hipStreamSet/GetAttribute (#831)

Co-authored-by: Rahul Manocha <rmanocha@amd.com>
This commit is contained in:
Manocha, Rahul
2025-08-15 12:51:35 -07:00
committed by GitHub
parent a5be0f5346
commit 0f49c4a97f
16 changed files with 200 additions and 20 deletions
+9
View File
@@ -307,6 +307,13 @@ class HostQueue : public CommandQueue {
return thread_.vdev()->getQueueID();
}
//! Returns Synchronization Policy for the current stream
amd::SyncPolicy GetSyncPolicy() const { return sync_policy_; }
//! Set Synchronization Policy used by Queue
void SetSyncPolicy(amd::SyncPolicy value) {
sync_policy_ = value;
}
private:
Command* head_; //!< Head of the batch list
Command* tail_; //!< Tail of the batch list
@@ -315,6 +322,8 @@ private:
//! True if this command queue is active
bool isActive_;
bool forceDestroy_ = false; //!< Destroy the queue in the current state
amd::SyncPolicy sync_policy_; //!< Used for controlling stream synchronization
};
class DeviceQueue : public CommandQueue {