Files
compute-runtime/opencl/source/gtpin/gtpin_defs.h
Maciej Plewka 4b42b066f8 Use dedicated using type for TaskCount
Related-To: NEO-7155

Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
2022-11-28 16:44:44 +01:00

40 lines
851 B
C++

/*
* Copyright (C) 2018-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "opencl/source/command_queue/command_queue.h"
#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