mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
25 lines
907 B
C++
25 lines
907 B
C++
/*
|
|
* Copyright (C) 2021-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/test/common/helpers/test_traits.h"
|
|
|
|
template <>
|
|
struct TestTraits<IGFX_GEN8_CORE> {
|
|
static constexpr bool auxBuiltinsSupported = false;
|
|
static constexpr bool programOnlyChangedFieldsInComputeStateMode = true;
|
|
static constexpr bool iohInSbaSupported = true;
|
|
static constexpr bool isUsingNonDefaultIoctls = false;
|
|
static constexpr bool deviceEnqueueSupport = false;
|
|
static constexpr bool implementsPreambleThreadArbitration = false;
|
|
static constexpr bool forceGpuNonCoherent = false;
|
|
static constexpr bool imagesSupported = true;
|
|
static constexpr bool programComputeModeCommandProgramsThreadArbitrationPolicy = false;
|
|
static constexpr bool programComputeModeCommandProgramsNonCoherent = false;
|
|
static constexpr bool heaplessAllowed = false;
|
|
};
|