mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-11 08:07:19 +08:00
Following API calls are being tested: - enqueueWriteImage - enqueueReadImage - enqueueCopyImage Signed-off-by: Rafal Maziejuk <rafal.maziejuk@intel.com> Related-To: NEO-6135
22 lines
684 B
C++
22 lines
684 B
C++
/*
|
|
* Copyright (C) 2021-2022 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;
|
|
};
|