Partial support for XE_HP_SDV

Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
Bartosz Dunajski
2021-04-23 16:43:48 +00:00
committed by Compute-Runtime-Automation
parent e0a50d3143
commit 96d14967ac
151 changed files with 15140 additions and 41 deletions

View File

@@ -1,10 +1,22 @@
/*
* Copyright (C) 2019-2020 Intel Corporation
* Copyright (C) 2019-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "opencl/extensions/public/cl_ext_private.h"
#include "opencl/source/memory_manager/resource_surface.h"
namespace NEO {
struct BarrierCommand {};
} // namespace NEO
class CommandQueue;
class BarrierCommand {
public:
BarrierCommand(CommandQueue *commandQueue, const cl_resource_barrier_descriptor_intel *descriptors, uint32_t numDescriptors);
~BarrierCommand() {}
uint32_t numSurfaces = 0;
StackVec<ResourceSurface, 32> surfaces;
StackVec<Surface *, 32> surfacePtrs;
};
} // namespace NEO