Files
compute-runtime/shared/test/common/helpers/ult_hw_config.h
Compute-Runtime-Validation 908a7721b2 Revert "Assign engine to command queue using round robin algorithm"
This reverts commit 2fff0f9059.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
2021-11-10 07:25:44 +01: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