Files
compute-runtime/shared/test/common/helpers/ult_hw_config.h
Zbigniew Zdanowicz 544890c066 Change default placement of preemption allocation
Related-To: NEO-5800

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
2021-05-11 15:26:24 +02:00

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