mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
Cleaned up files: opencl/source/command_queue/csr_selection_args.h opencl/source/event/event.h shared/source/helpers/engine_control.h shared/source/sku_info/definitions/sku_info.h Related-To: NEO-5548 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/source/command_queue/csr_selection_args.h"
|
|
|
|
#include "opencl/source/mem_obj/buffer.h"
|
|
#include "opencl/source/mem_obj/image.h"
|
|
|
|
namespace NEO {
|
|
|
|
void CsrSelectionArgs::processResource(const Image &image, uint32_t rootDeviceIndex, Resource &outResource) {
|
|
processResource(image.getMultiGraphicsAllocation(), rootDeviceIndex, outResource);
|
|
outResource.image = ℑ
|
|
}
|
|
|
|
void CsrSelectionArgs::processResource(const Buffer &buffer, uint32_t rootDeviceIndex, Resource &outResource) {
|
|
processResource(buffer.getMultiGraphicsAllocation(), rootDeviceIndex, outResource);
|
|
}
|
|
|
|
void CsrSelectionArgs::processResource(const MultiGraphicsAllocation &multiGfxAlloc, uint32_t rootDeviceIndex, Resource &outResource) {
|
|
auto allocation = multiGfxAlloc.getGraphicsAllocation(rootDeviceIndex);
|
|
if (allocation) {
|
|
processResource(*allocation, rootDeviceIndex, outResource);
|
|
}
|
|
}
|
|
|
|
void CsrSelectionArgs::processResource(const GraphicsAllocation &gfxAlloc, uint32_t rootDeviceIndex, Resource &outResource) {
|
|
outResource.allocation = &gfxAlloc;
|
|
outResource.isLocal = gfxAlloc.isAllocatedInLocalMemoryPool();
|
|
}
|
|
|
|
} // namespace NEO
|