mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 07:44:16 +08:00
15 lines
461 B
C++
15 lines
461 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/aub/aub_center.h"
|
|
using namespace aub_stream;
|
|
namespace OCLRT {
|
|
AubManager *createAubManager(uint32_t gfxFamily, uint32_t devicesCount, uint64_t memoryBankSize, bool localMemorySupported, const std::string &aubFileName) {
|
|
return AubManager::create(gfxFamily, devicesCount, memoryBankSize, localMemorySupported, aubFileName);
|
|
}
|
|
} // namespace OCLRT
|