mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
include API name unify tests timeout/sigabrt message across OSes Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
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
|