mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
15 lines
275 B
C++
15 lines
275 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2022 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "shared/source/aub/aub_center.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
aub_stream::AubManager *createAubManager(const aub_stream::AubManagerOptions &options) {
|
||
|
|
return nullptr;
|
||
|
|
}
|
||
|
|
} // namespace NEO
|