mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Added a time unit to the variable name to make it clear. Removed incorrect and not needed check. Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
16 lines
280 B
C++
16 lines
280 B
C++
/*
|
|
* Copyright (C) 2021-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
namespace NEO {
|
|
#if defined(_WIN32)
|
|
unsigned int ultIterationMaxTimeInS = 90;
|
|
#else
|
|
unsigned int ultIterationMaxTimeInS = 45;
|
|
#endif
|
|
const char *executionName = "OCLOC";
|
|
} // namespace NEO
|