2021-01-29 18:17:10 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Intel Corporation
|
|
|
|
*
|
|
|
|
* 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-09-18 00:37:07 +08:00
|
|
|
static constexpr bool programOnlyChangedFieldsInComputeStateMode = true;
|
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-01-29 18:17:10 +08:00
|
|
|
};
|