2018-12-11 00:12:32 +08:00
|
|
|
/*
|
2019-01-02 04:14:17 +08:00
|
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
2018-12-11 00:12:32 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "runtime/aub/aub_center.h"
|
2019-01-19 04:44:23 +08:00
|
|
|
using namespace aub_stream;
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2019-02-20 05:50:52 +08:00
|
|
|
AubManager *createAubManager(uint32_t gfxFamily, uint32_t devicesCount, uint64_t memoryBankSize, bool localMemorySupported, uint32_t streamMode) {
|
|
|
|
return AubManager::create(gfxFamily, devicesCount, memoryBankSize, localMemorySupported, streamMode);
|
2018-12-11 00:12:32 +08:00
|
|
|
}
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|