2018-12-10 17:12:32 +01:00
|
|
|
/*
|
2020-02-22 09:28:27 +01:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2018-12-10 17:12:32 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-10-16 12:10:52 +02:00
|
|
|
#include "shared/source/aub/aub_center.h"
|
2019-01-18 21:44:23 +01:00
|
|
|
using namespace aub_stream;
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2020-08-31 09:37:36 +02:00
|
|
|
AubManager *createAubManager(uint32_t gfxFamily, uint32_t devicesCount, uint64_t memoryBankSize, uint32_t stepping, bool localMemorySupported, uint32_t streamMode, uint64_t gpuAddressSpace) {
|
|
|
|
|
return AubManager::create(gfxFamily, devicesCount, memoryBankSize, stepping, localMemorySupported, streamMode, gpuAddressSpace);
|
2018-12-10 17:12:32 +01:00
|
|
|
}
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|