Files
compute-runtime/unit_tests/mocks/mock_aub_center.h
Hoppe, Mateusz 0942edd6af Update aub_stream headers
- pass hwInfo and localMemoryEnabled to AubCenter ctor
- initialize AubCenter in Platform:intialize() when Device is
 created - only when CSR is not CsrHw
- move aub_center files to runtime/aub directory

Change-Id: Iceb4bf1cb2bb55b42d438502cca667a449f11411
2018-11-13 18:09:30 +01:00

16 lines
290 B
C++

/*
* Copyright (C) 2018 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/aub/aub_center.h"
class MockAubCenter : public OCLRT::AubCenter {
public:
using AubCenter::AubCenter;
using AubCenter::aubManager;
~MockAubCenter() override = default;
};