mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
This commit moves initialization of global MMIOs from AUB CSR to Simulated CSR Change-Id: I93a612d4f0c82e7135287f6508870190790141bc
18 lines
331 B
C++
18 lines
331 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "runtime/command_stream/tbx_command_stream_receiver.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
struct MockTbxStream : public TbxCommandStreamReceiver::TbxStream {
|
|
using TbxCommandStreamReceiver::TbxStream::socket;
|
|
};
|
|
} // namespace OCLRT
|