17 lines
309 B
C++
17 lines
309 B
C++
/*
|
|
* Copyright (C) 2021-2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
namespace NEO {
|
|
#if defined(_WIN32)
|
|
unsigned int ultIterationMaxTimeInS = 90;
|
|
#else
|
|
unsigned int ultIterationMaxTimeInS = 45;
|
|
#endif
|
|
const char *executionName = "ULT";
|
|
const char *apiName = "OCLOC";
|
|
} // namespace NEO
|