Skip to content

Commit 910f6a2

Browse files
add DG1 config for ult
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
1 parent 7764ac4 commit 910f6a2

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

manifests/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ components:
1414
infra:
1515
branch: infra
1616
dest_dir: infra
17-
revision: b5088d801eded74566abfba1d5a5efcd4354b51d
17+
revision: 07322520e245de985617eca160251a64177bdb91
1818
type: git
1919
internal:
2020
branch: master

opencl/test/unit_test/gen12lp/special_ult_helper_gen12lp.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2019-2020 Intel Corporation
2+
* Copyright (C) 2019-2021 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -9,9 +9,15 @@
99

1010
#include "shared/source/helpers/hw_info.h"
1111

12+
#include "test.h"
13+
1214
namespace NEO {
1315

1416
bool SpecialUltHelperGen12lp::additionalCoherencyCheck(PRODUCT_FAMILY productFamily, bool coherency) {
17+
if (productFamily == IGFX_DG1) {
18+
EXPECT_FALSE(coherency);
19+
return true;
20+
}
1521
return false;
1622
}
1723

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#
2+
# Copyright (C) 2020-2021 Intel Corporation
3+
#
4+
# SPDX-License-Identifier: MIT
5+
#
6+
7+
if(TESTS_DG1)
8+
set(unit_test_config "dg1/1/6/16/0")
9+
include(${NEO_SOURCE_DIR}/cmake/run_ult_target.cmake)
10+
endif()

0 commit comments

Comments
 (0)