mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
Updating files modified in 2018 only. Older files remain with old style copyright header Change-Id: Ic99f2e190ad74b4b7f2bd79dd7b9fa5fbe36ec92 Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
55 lines
948 B
C++
55 lines
948 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "CL/cl.h"
|
|
#include <cstdint>
|
|
|
|
namespace OCLRT {
|
|
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 OCLRT
|