mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
Change-Id: If965c79d70392db26597aea4c2f3b7ae2820fe96 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
30 lines
872 B
C++
30 lines
872 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "CL/cl.h"
|
|
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
extern bool isGTPinInitialized;
|
|
|
|
void gtpinNotifyContextCreate(cl_context context);
|
|
void gtpinNotifyContextDestroy(cl_context context);
|
|
void gtpinNotifyKernelCreate(cl_kernel kernel);
|
|
void gtpinNotifyKernelSubmit(cl_kernel kernel, void *pCmdQueue);
|
|
void gtpinNotifyPreFlushTask(void *pCmdQueue);
|
|
void gtpinNotifyFlushTask(uint32_t flushedTaskCount);
|
|
void gtpinNotifyTaskCompletion(uint32_t completedTaskCount);
|
|
void gtpinNotifyMakeResident(void *pKernel, void *pCommandStreamReceiver);
|
|
void gtpinNotifyUpdateResidencyList(void *pKernel, void *pResidencyVector);
|
|
void gtpinNotifyPlatformShutdown();
|
|
inline bool gtpinIsGTPinInitialized() { return isGTPinInitialized; }
|
|
void *gtpinGetIgcInit();
|
|
} // namespace NEO
|