31 lines
840 B
C++
31 lines
840 B
C++
/*
|
|
* Copyright (C) 2020-2023 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 useWaitForTimestamps = false;
|
|
bool useBlitSplit = false;
|
|
|
|
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
|