Run aub tests for enqueue image operations with BCS enabled

Following API calls are being tested:
- enqueueWriteImage
- enqueueReadImage
- enqueueCopyImage

Signed-off-by: Rafal Maziejuk <rafal.maziejuk@intel.com>
Related-To: NEO-6135
This commit is contained in:
Rafal Maziejuk
2022-02-03 17:34:29 +00:00
committed by Compute-Runtime-Automation
parent 1275c4e200
commit 2d901f925c
14 changed files with 821 additions and 718 deletions

View File

@@ -18,4 +18,5 @@ struct TestTraits<IGFX_GEN11_CORE> {
static constexpr bool deviceEnqueueSupport = false;
static constexpr bool implementsPreambleThreadArbitration = true;
static constexpr bool forceGpuNonCoherent = false;
static constexpr bool imagesSupported = true;
};

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2021 Intel Corporation
* Copyright (C) 2021-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -18,4 +18,5 @@ struct TestTraits<IGFX_GEN12LP_CORE> {
static constexpr bool deviceEnqueueSupport = false;
static constexpr bool implementsPreambleThreadArbitration = false;
static constexpr bool forceGpuNonCoherent = true;
static constexpr bool imagesSupported = true;
};

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2021 Intel Corporation
* Copyright (C) 2021-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -17,4 +17,5 @@ struct TestTraits<IGFX_GEN8_CORE> {
static constexpr bool deviceEnqueueSupport = false;
static constexpr bool implementsPreambleThreadArbitration = false;
static constexpr bool forceGpuNonCoherent = false;
static constexpr bool imagesSupported = true;
};

View File

@@ -17,4 +17,5 @@ struct TestTraits<IGFX_GEN9_CORE> {
static constexpr bool deviceEnqueueSupport = false;
static constexpr bool implementsPreambleThreadArbitration = true;
static constexpr bool forceGpuNonCoherent = false;
static constexpr bool imagesSupported = true;
};

View File

@@ -27,4 +27,5 @@ struct TestTraits<IGFX_XE_HP_CORE> {
static constexpr bool numberOfWalkersInCfeStateSupported = true;
static constexpr bool forceGpuNonCoherent = false;
static constexpr bool isUnTypedDataPortCacheFlushSupported = false;
static constexpr bool imagesSupported = true;
};

View File

@@ -27,4 +27,5 @@ struct TestTraits<IGFX_XE_HPC_CORE> {
static constexpr bool isUsingNonDefaultIoctls = true;
static constexpr bool forceGpuNonCoherent = false;
static constexpr bool isUnTypedDataPortCacheFlushSupported = true;
static constexpr bool imagesSupported = false;
};

View File

@@ -27,4 +27,5 @@ struct TestTraits<IGFX_XE_HPG_CORE> {
static constexpr bool numberOfWalkersInCfeStateSupported = true;
static constexpr bool forceGpuNonCoherent = false;
static constexpr bool isUnTypedDataPortCacheFlushSupported = true;
static constexpr bool imagesSupported = true;
};