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

This reverts commit 2fff0f9059
.
Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
29 lines
770 B
C++
29 lines
770 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;
|
|
|
|
bool csrBaseCallCreatePreemption = true;
|
|
bool csrCreatePreemptionReturnValue = true;
|
|
};
|
|
|
|
extern UltHwConfig ultHwConfig;
|
|
} // namespace NEO
|