mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 06:15:36 +08:00
Change-Id: I6a54610741a91aeb902a405bdc0e4ef444106719 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
17 lines
265 B
C++
17 lines
265 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
// AUB file folder location
|
|
const char *folderAUB = ".";
|
|
|
|
// Initial value for HW tag
|
|
uint32_t initialHardwareTag = 0;
|
|
} // namespace NEO
|