92 lines
4.4 KiB
C++
92 lines
4.4 KiB
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/builtin_kernels_simulation/scheduler_simulation.h"
|
|
|
|
#include "runtime/builtin_kernels_simulation/opencl_c.h"
|
|
#include "runtime/builtin_kernels_simulation/scheduler_simulation.inl"
|
|
#include "runtime/execution_model/device_enqueue.h"
|
|
#include "runtime/gen9/hw_cmds.h"
|
|
#include "runtime/memory_manager/graphics_allocation.h"
|
|
|
|
#include "CL/cl.h"
|
|
|
|
using namespace NEO;
|
|
using namespace BuiltinKernelsSimulation;
|
|
|
|
namespace NEO {
|
|
struct SKLFamily;
|
|
}
|
|
|
|
namespace Gen9SchedulerSimulation {
|
|
|
|
#define SCHEDULER_EMULATION
|
|
|
|
float __intel__getProfilingTimerResolution() {
|
|
return static_cast<float>(DEFAULT_GEN9_PLATFORM::hwInfo.capabilityTable.defaultProfilingTimerResolution);
|
|
}
|
|
|
|
#include "runtime/gen9/device_enqueue.h"
|
|
#include "runtime/gen9/scheduler_definitions.h"
|
|
#include "runtime/gen9/scheduler_igdrcl_built_in.inl"
|
|
#include "runtime/scheduler/scheduler.cl"
|
|
} // namespace Gen9SchedulerSimulation
|
|
|
|
namespace BuiltinKernelsSimulation {
|
|
|
|
template <>
|
|
void SchedulerSimulation<SKLFamily>::startScheduler(uint32_t index,
|
|
GraphicsAllocation *queue,
|
|
GraphicsAllocation *commandsStack,
|
|
GraphicsAllocation *eventsPool,
|
|
GraphicsAllocation *secondaryBatchBuffer,
|
|
GraphicsAllocation *dsh,
|
|
GraphicsAllocation *reflectionSurface,
|
|
GraphicsAllocation *queueStorageBuffer,
|
|
GraphicsAllocation *ssh,
|
|
GraphicsAllocation *debugQueue) {
|
|
|
|
threadIDToLocalIDmap.insert(std::make_pair(std::this_thread::get_id(), index));
|
|
|
|
while (!conditionReady) {
|
|
}
|
|
|
|
Gen9SchedulerSimulation::SchedulerParallel20((IGIL_CommandQueue *)queue->getUnderlyingBuffer(),
|
|
(uint *)commandsStack->getUnderlyingBuffer(),
|
|
(IGIL_EventPool *)eventsPool->getUnderlyingBuffer(),
|
|
(uint *)secondaryBatchBuffer->getUnderlyingBuffer(),
|
|
(char *)dsh->getUnderlyingBuffer(),
|
|
(IGIL_KernelDataHeader *)reflectionSurface->getUnderlyingBuffer(),
|
|
(uint *)queueStorageBuffer->getUnderlyingBuffer(),
|
|
(char *)ssh->getUnderlyingBuffer(),
|
|
debugQueue != nullptr ? (DebugDataBuffer *)debugQueue->getUnderlyingBuffer() : nullptr);
|
|
}
|
|
template <>
|
|
void SchedulerSimulation<SKLFamily>::patchGpGpuWalker(uint secondLevelBatchOffset,
|
|
__global uint *secondaryBatchBuffer,
|
|
uint interfaceDescriptorOffset,
|
|
uint simdSize,
|
|
uint totalLocalWorkSize,
|
|
uint3 dimSize,
|
|
uint3 startPoint,
|
|
uint numberOfHwThreadsPerWg,
|
|
uint indirectPayloadSize,
|
|
uint ioHoffset) {
|
|
Gen9SchedulerSimulation::patchGpGpuWalker(secondLevelBatchOffset,
|
|
secondaryBatchBuffer,
|
|
interfaceDescriptorOffset,
|
|
simdSize,
|
|
totalLocalWorkSize,
|
|
dimSize,
|
|
startPoint,
|
|
numberOfHwThreadsPerWg,
|
|
indirectPayloadSize,
|
|
ioHoffset);
|
|
}
|
|
template class SchedulerSimulation<SKLFamily>;
|
|
} // namespace BuiltinKernelsSimulation
|