56 lines
950 B
C++
56 lines
950 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "CL/cl.h"
|
|
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
bool isGTPinInitialized = false;
|
|
|
|
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() {
|
|
}
|
|
|
|
void *gtpinGetIgcInit() {
|
|
return nullptr;
|
|
}
|
|
|
|
void setIgcInfo(const void *igcInfo) {
|
|
}
|
|
|
|
const void *gtpinGetIgcInfo() {
|
|
return nullptr;
|
|
}
|
|
} // namespace NEO
|