mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Following API calls are being tested: - enqueueWriteImage - enqueueReadImage - enqueueCopyImage Signed-off-by: Rafal Maziejuk <rafal.maziejuk@intel.com> Related-To: NEO-6135
23 lines
744 B
C++
23 lines
744 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_GEN12LP_CORE> {
|
|
static constexpr bool auxBuiltinsSupported = true;
|
|
static constexpr bool programOnlyChangedFieldsInComputeStateMode = false;
|
|
static constexpr bool iohInSbaSupported = true;
|
|
static constexpr bool auxTranslationSupported = true;
|
|
static constexpr bool isUsingNonDefaultIoctls = false;
|
|
static constexpr bool deviceEnqueueSupport = false;
|
|
static constexpr bool implementsPreambleThreadArbitration = false;
|
|
static constexpr bool forceGpuNonCoherent = true;
|
|
static constexpr bool imagesSupported = true;
|
|
};
|