SWDEV-290298 - add a flag to indicate the primary context active status

Change-Id: Ia31790706d3f855bc1eedf5ef874e471
Este commit está contenido en:
haoyuan2
2021-12-01 09:17:04 -08:00
cometido por Maneesh Gupta
padre aedbad0109
commit 439af94dd9
Se han modificado 3 ficheros con 14 adiciones y 1 borrados
+3
Ver fichero
@@ -377,6 +377,9 @@ void Command::enqueue() {
((commandWaitBits_ & 0x2) != 0)) {
awaitCompletion();
}
// set this queue status is active
queue_->SetQueueStatus();
}
// ================================================================================================
+2 -1
Ver fichero
@@ -39,7 +39,8 @@ HostQueue::HostQueue(Context& context, Device& device, cl_command_queue_properti
priority, cuMask),
lastEnqueueCommand_(nullptr),
head_(nullptr),
tail_(nullptr) {
tail_(nullptr),
isActive_(false) {
if (AMD_DIRECT_DISPATCH) {
// Initialize the queue
thread_.Init(this);
+9
Ver fichero
@@ -278,9 +278,18 @@ class HostQueue : public CommandQueue {
//! Reset the command batch list
void ResetSubmissionBatch() { head_ = nullptr; }
//! Set queue status
void SetQueueStatus() { isActive_ = true; }
//! Get queue status
bool GetQueueStatus() { return isActive_; }
private:
Command* head_; //!< Head of the batch list
Command* tail_; //!< Tail of the batch list
//! True if this command queue is active
bool isActive_;
};