2021-01-29 18:17:10 +08:00
|
|
|
/*
|
2023-02-09 23:13:43 +08:00
|
|
|
* Copyright (C) 2021-2023 Intel Corporation
|
2021-01-29 18:17:10 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2021-01-21 20:10:13 +08:00
|
|
|
#include "shared/test/common/helpers/test_traits.h"
|
2021-01-29 18:17:10 +08:00
|
|
|
|
|
|
|
template <>
|
|
|
|
struct TestTraits<IGFX_GEN12LP_CORE> {
|
2021-01-29 23:40:17 +08:00
|
|
|
static constexpr bool auxBuiltinsSupported = true;
|
2021-12-21 00:09:41 +08:00
|
|
|
static constexpr bool programOnlyChangedFieldsInComputeStateMode = false;
|
2021-09-28 18:56:22 +08:00
|
|
|
static constexpr bool iohInSbaSupported = true;
|
2021-10-08 18:10:38 +08:00
|
|
|
static constexpr bool auxTranslationSupported = true;
|
2021-11-02 23:59:57 +08:00
|
|
|
static constexpr bool isUsingNonDefaultIoctls = false;
|
2021-10-27 00:15:57 +08:00
|
|
|
static constexpr bool deviceEnqueueSupport = false;
|
2021-12-14 02:29:58 +08:00
|
|
|
static constexpr bool implementsPreambleThreadArbitration = false;
|
2021-12-21 00:09:41 +08:00
|
|
|
static constexpr bool forceGpuNonCoherent = true;
|
2022-02-04 01:34:29 +08:00
|
|
|
static constexpr bool imagesSupported = true;
|
2021-01-29 18:17:10 +08:00
|
|
|
};
|