mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 00:03:14 +08:00
- unit tests are using mocked version of createAubManager - dynamic library, aub and tbx tests are using functional version using aub_stream Change-Id: I12d69d84d00645009b026df266b8b64adebb86d4
15 lines
497 B
C++
15 lines
497 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/aub/aub_center.h"
|
|
using namespace AubDump;
|
|
namespace OCLRT {
|
|
AubManager *createAubManager(uint32_t gfxFamily, uint32_t devicesCount, size_t memoryBankSizeInGB, bool localMemorySupported, uint32_t deviceId, const std::string &aubFileName) {
|
|
return AubDump::AubManager::create(gfxFamily, devicesCount, memoryBankSizeInGB, localMemorySupported, deviceId, aubFileName);
|
|
}
|
|
} // namespace OCLRT
|