mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Add SKIP_SHARED_UNIT_TESTS flag Related-To: NEO-5201 Signed-off-by: Pawel Cieslak <pawel.cieslak@intel.com>
26 lines
676 B
C++
26 lines
676 B
C++
/*
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
namespace NEO {
|
|
struct UltHwConfig {
|
|
bool mockedPrepareDeviceEnvironmentsFuncResult = true;
|
|
bool useHwCsr = false;
|
|
bool useMockedPrepareDeviceEnvironmentsFunc = true;
|
|
bool forceOsAgnosticMemoryManager = true;
|
|
|
|
bool csrFailInitDirectSubmission = false;
|
|
bool csrBaseCallDirectSubmissionAvailable = false;
|
|
bool csrSuperBaseCallDirectSubmissionAvailable = false;
|
|
|
|
bool csrBaseCallBlitterDirectSubmissionAvailable = false;
|
|
bool csrSuperBaseCallBlitterDirectSubmissionAvailable = false;
|
|
};
|
|
|
|
extern UltHwConfig ultHwConfig;
|
|
} // namespace NEO
|