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