mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
-start async thread at device initialization which initializes selected builtins and exits -share module across builtins using same binary Resolves: NEO-7644 Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
33 lines
933 B
C++
33 lines
933 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 useinitBuiltinsAsyncEnabled = false;
|
|
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
|