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
|