2018-02-05 18:48:58 +08:00
|
|
|
/*
|
2018-09-18 15:11:08 +08:00
|
|
|
* Copyright (C) 2018 Intel Corporation
|
2018-02-05 18:48:58 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-02-05 18:48:58 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-08-17 19:38:09 +08:00
|
|
|
#include "runtime/helpers/gmm_callbacks.h"
|
2018-02-05 18:48:58 +08:00
|
|
|
#include "runtime/command_stream/linear_stream.h"
|
|
|
|
#include "runtime/helpers/hw_helper.h"
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
namespace OCLRT {
|
2018-08-17 19:38:09 +08:00
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
long __stdcall DeviceCallbacks<GfxFamily>::notifyAubCapture(void *csrHandle, uint64_t gfxAddress, size_t gfxSize, bool allocate) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-05 18:48:58 +08:00
|
|
|
template <typename GfxFamily>
|
|
|
|
int __stdcall TTCallbacks<GfxFamily>::writeL3Address(void *queueHandle, uint64_t l3GfxAddress, uint64_t regOffset) {
|
2018-02-15 03:14:20 +08:00
|
|
|
return 0;
|
2018-08-17 19:38:09 +08:00
|
|
|
}
|
2018-02-05 18:48:58 +08:00
|
|
|
|
|
|
|
} // namespace OCLRT
|