2020-02-03 20:19:12 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
|
|
struct UltHwConfig {
|
|
|
|
bool mockedGetDevicesFuncResult = true;
|
|
|
|
bool useHwCsr = false;
|
|
|
|
bool useMockedGetDevicesFunc = true;
|
|
|
|
bool forceOsAgnosticMemoryManager = true;
|
2020-01-16 00:02:47 +08:00
|
|
|
|
|
|
|
bool csrFailInitDirectSubmission = false;
|
|
|
|
bool csrBaseCallDirectSubmissionAvailable = false;
|
|
|
|
bool csrSuperBaseCallDirectSubmissionAvailable = false;
|
2020-02-03 20:19:12 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
extern UltHwConfig ultHwConfig;
|
|
|
|
} // namespace NEO
|