diff --git a/rocrtst/common/base_rocr_utils.cc b/rocrtst/common/base_rocr_utils.cc index 298b646862..f97e2f8644 100755 --- a/rocrtst/common/base_rocr_utils.cc +++ b/rocrtst/common/base_rocr_utils.cc @@ -375,8 +375,11 @@ hsa_status_t InitializeAQLPacket(const BaseRocR* test, if (aql == nullptr) { return HSA_STATUS_ERROR; } - - aql->header = 0; // Set this right before doorbell ring + + // Initialize Packet type as Invalid + // Update packet type to Kernel Dispatch + // right before ringing doorbell + aql->header = 1; aql->setup = 1; aql->workgroup_size_x = 256;