18 lines
303 B
C++
18 lines
303 B
C++
/*
|
|
* Copyright (C) 2019-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include <cstdint>
|
|
#include <stddef.h>
|
|
|
|
namespace NEO {
|
|
const char *folderAUB = "aub_out";
|
|
|
|
uint32_t initialHardwareTag = static_cast<uint32_t>(0xFFFFFF00);
|
|
|
|
size_t defaultPoolSize = 1048576u;
|
|
} // namespace NEO
|