add DG1 config for ult

Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
This commit is contained in:
Artur Harasimiuk
2021-03-17 18:18:50 +01:00
committed by Compute-Runtime-Automation
parent 7764ac44ae
commit 910f6a20e3
3 changed files with 18 additions and 2 deletions

View File

@ -14,7 +14,7 @@ components:
infra:
branch: infra
dest_dir: infra
revision: b5088d801eded74566abfba1d5a5efcd4354b51d
revision: 07322520e245de985617eca160251a64177bdb91
type: git
internal:
branch: master

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2019-2020 Intel Corporation
* Copyright (C) 2019-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@ -9,9 +9,15 @@
#include "shared/source/helpers/hw_info.h"
#include "test.h"
namespace NEO {
bool SpecialUltHelperGen12lp::additionalCoherencyCheck(PRODUCT_FAMILY productFamily, bool coherency) {
if (productFamily == IGFX_DG1) {
EXPECT_FALSE(coherency);
return true;
}
return false;
}

View File

@ -0,0 +1,10 @@
#
# Copyright (C) 2020-2021 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
if(TESTS_DG1)
set(unit_test_config "dg1/1/6/16/0")
include(${NEO_SOURCE_DIR}/cmake/run_ult_target.cmake)
endif()