Files
compute-runtime/shared/test/common/gen8/test_traits_gen8.h
Kamil Kopryk 59f661356c feature: use heapless builtins in OCL if supported
Related-To: NEO-7621
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
2024-02-08 15:49:58 +01:00

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;
};