mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-11 16:45:25 +08:00
Include files are now grouped and sorted in following order: 1. Header file of the class the current file implements 2. Project files 3. Third party files 4. Standard library Change-Id: If31af05652184169f7fee1d7ad08f1b2ed602cf0 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
83 lines
1.4 KiB
C++
83 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "instrumentation.h"
|
|
|
|
#include <cstdint>
|
|
|
|
using namespace OCLRT;
|
|
|
|
bool InstrAutoSamplingStart(
|
|
InstrEscCbData cbData,
|
|
void **ppOAInterface) {
|
|
|
|
return false;
|
|
}
|
|
|
|
bool InstrAutoSamplingStop(
|
|
void **ppOAInterface) {
|
|
|
|
return false;
|
|
}
|
|
|
|
bool InstrCheckPmRegsCfg(
|
|
InstrPmRegsCfg *pQueryPmRegsCfg,
|
|
uint32_t *pLastPmRegsCfgHandle,
|
|
const void *pASInterface) {
|
|
|
|
return false;
|
|
}
|
|
|
|
bool InstrEscGetPmRegsCfg(
|
|
InstrEscCbData cbData,
|
|
uint32_t cfgId,
|
|
InstrPmRegsCfg *pCfg,
|
|
InstrAutoSamplingMode *pAutoSampling) {
|
|
return false;
|
|
}
|
|
bool InstrEscHwMetricsEnable(
|
|
InstrEscCbData cbData,
|
|
bool enable) {
|
|
return false;
|
|
}
|
|
|
|
bool InstrEscLoadPmRegsCfg(
|
|
InstrEscCbData cbData,
|
|
InstrPmRegsCfg *pCfg,
|
|
bool hardwareAccess) {
|
|
return false;
|
|
}
|
|
|
|
bool InstrEscSetPmRegsCfg(
|
|
InstrEscCbData cbData,
|
|
uint32_t count,
|
|
uint32_t *pOffsets,
|
|
uint32_t *pValues) {
|
|
return false;
|
|
}
|
|
|
|
bool InstrEscSendReadRegsCfg(
|
|
InstrEscCbData cbData,
|
|
uint32_t count,
|
|
uint32_t *pOffsets,
|
|
uint32_t *pBitSizes) {
|
|
return false;
|
|
}
|
|
|
|
uint32_t InstrSetPlatformInfo(
|
|
uint32_t productId,
|
|
void *pSkuTable) {
|
|
return -1;
|
|
}
|
|
|
|
bool InstrSetAvailable(bool enabled) {
|
|
return false;
|
|
}
|
|
|
|
void InstrEscVerifyEnable(InstrEscCbData cbData) {
|
|
}
|