Fix computation of max_wave_id property

Change-Id: I2ab145d301c92f39bbdb911e48aecccbd64ac82b


[ROCm/ROCR-Runtime commit: da52417c14]
Tá an tiomantas seo le fáil i:
Ramesh Errabolu
2016-07-19 17:06:12 -05:00
tiomanta ag Gerrit Code Review
tuismitheoir 83d9c273a5
tiomantas 4d4616c7dd
@@ -174,7 +174,7 @@ AqlQueue::AqlQueue(GpuAgent* agent, size_t req_size_pkts, HSAuint32 node_id,
const auto& props = agent->properties();
amd_queue_.max_cu_id = (props.NumFComputeCores / props.NumSIMDPerCU) - 1;
amd_queue_.max_wave_id = props.MaxWavesPerSIMD - 1;
amd_queue_.max_wave_id = (props.MaxWavesPerSIMD * props.NumSIMDPerCU) - 1;
#ifdef HSA_LARGE_MODEL
AMD_HSA_BITS_SET(amd_queue_.queue_properties, AMD_QUEUE_PROPERTIES_IS_PTR64,