39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
/*
|
|
* Copyright (C) 2020-2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
namespace NEO {
|
|
|
|
class ExecutionEnvironment;
|
|
struct UltHwConfig {
|
|
const char *aubTestName = nullptr;
|
|
ExecutionEnvironment *sourceExecutionEnvironment = nullptr;
|
|
|
|
bool mockedPrepareDeviceEnvironmentsFuncResult = true;
|
|
bool useHwCsr = false;
|
|
bool useMockedPrepareDeviceEnvironmentsFunc = true;
|
|
bool forceOsAgnosticMemoryManager = true;
|
|
bool useinitBuiltinsAsyncEnabled = false;
|
|
bool useWaitForTimestamps = false;
|
|
bool useBlitSplit = false;
|
|
bool useFirstSubmissionInitDevice = false;
|
|
bool useGpuCopyForDcFlushMitigation = 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
|