mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 17:00:59 +08:00
Related-To: NEO-4207 Change-Id: I70781b44e7d14360a581808049baf8b61fd1b4e4 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
18 lines
324 B
C++
18 lines
324 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include <cstdint>
|
|
#include <limits>
|
|
|
|
namespace NEO {
|
|
// AUB file folder location
|
|
const char *folderAUB = "aub_out";
|
|
|
|
// Initial value for HW tag
|
|
uint32_t initialHardwareTag = std::numeric_limits<uint32_t>::max();
|
|
} // namespace NEO
|