mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
for aub tests on Windows to 360s for ocloc tests on Windows to 90s Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
16 lines
274 B
C++
16 lines
274 B
C++
/*
|
|
* Copyright (C) 2021-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
namespace NEO {
|
|
#if defined(_WIN32)
|
|
unsigned int ultIterationMaxTime = 90;
|
|
#else
|
|
unsigned int ultIterationMaxTime = 45;
|
|
#endif
|
|
const char *executionName = "OCLOC";
|
|
} // namespace NEO
|