SWDEV-407533 - [ABI Break]Remove Wavelimiter

Change-Id: I6a2f6fb5a0c3acea93fa0200a69679783e76f5bd
Этот коммит содержится в:
German
2023-08-24 18:29:40 -04:00
коммит произвёл German Andryeyev
родитель 1302d6f119
Коммит 7be3a5e33e
14 изменённых файлов: 10 добавлений и 584 удалений
-7
Просмотреть файл
@@ -101,10 +101,6 @@ uint64_t Event::recordProfilingInfo(int32_t status, uint64_t timeStamp) {
break;
default:
profilingInfo_.end_ = timeStamp;
if (profilingInfo_.callback_ != nullptr) {
profilingInfo_.callback_->callback(timeStamp - profilingInfo_.start_,
profilingInfo_.waves_);
}
break;
}
return timeStamp;
@@ -429,15 +425,12 @@ NDRangeKernelCommand::NDRangeKernelCommand(HostQueue& queue, const EventWaitList
firstDevice_(firstDevice) {
auto& device = queue.device();
auto devKernel = const_cast<device::Kernel*>(kernel.getDeviceKernel(device));
profilingInfo_.setCallback(devKernel->getProfilingCallback(
queue.vdev()), devKernel->getWavesPerSH(queue.vdev()));
if (cooperativeGroups()) {
setNumWorkgroups();
}
if (forceProfiling) {
profilingInfo_.enabled_ = true;
profilingInfo_.clear();
profilingInfo_.callback_ = nullptr;
profilingInfo_.marker_ts_ = true;
}
kernel_.retain();