Files
compute-runtime/shared/test/common/helpers/ult_hw_config.h
Lukasz Jobczyk abb366e3c0 Flush task at device init
Resolves: NEO-7642

Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
2023-01-24 14:49:39 +01:00

32 lines
887 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 useFirstSubmissionInitDevice = 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