mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
Partial support for XE_HP_SDV
Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
e0a50d3143
commit
96d14967ac
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user