1 /*
2  * Copyright (C) 2019-2021 Intel Corporation
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  */
7 
8 #include <cstdint>
9 #include <limits>
10 
11 namespace NEO {
12 // AUB file folder location
13 const char *folderAUB = ".";
14 
15 // Initial value for HW tag
16 uint32_t initialHardwareTag = std::numeric_limits<uint32_t>::max();
17 } // namespace NEO
18