mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-11 00:10:58 +08:00
Cleaned up files: opencl/source/command_queue/command_queue_hw.h opencl/source/gtpin/gtpin_defs.h opencl/source/mem_obj/mem_obj_helper.h opencl/source/memory_manager/mem_obj_surface.h opencl/source/sharings/unified/unified_sharing.h opencl/test/unit_test/api/cl_enqueue_migrate_mem_objects_tests.inl opencl/test/unit_test/aub_tests/fixtures/unified_memory_fixture.h opencl/test/unit_test/command_queue/command_queue_fixture.h Related-To: NEO-5548 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
38 lines
795 B
C++
38 lines
795 B
C++
/*
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "opencl/source/kernel/kernel.h"
|
|
|
|
#include "CL/cl.h"
|
|
#include "ocl_igc_shared/gtpin/gtpin_ocl_interface.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct GTPinKernelExec {
|
|
Kernel *pKernel;
|
|
cl_mem gtpinResource;
|
|
CommandQueue *pCommandQueue;
|
|
gtpin::command_buffer_handle_t commandBuffer;
|
|
TaskCountType taskCount;
|
|
bool isTaskCountValid;
|
|
bool isResourceResident;
|
|
|
|
GTPinKernelExec() {
|
|
pKernel = nullptr;
|
|
gtpinResource = nullptr;
|
|
pCommandQueue = nullptr;
|
|
commandBuffer = nullptr;
|
|
taskCount = 0;
|
|
isTaskCountValid = false;
|
|
isResourceResident = false;
|
|
}
|
|
};
|
|
typedef struct GTPinKernelExec gtpinkexec_t;
|
|
|
|
} // namespace NEO
|