diff --git a/manifests/manifest.yml b/manifests/manifest.yml index f328a88fa0..8f9944ae7e 100644 --- a/manifests/manifest.yml +++ b/manifests/manifest.yml @@ -14,7 +14,7 @@ components: infra: branch: infra dest_dir: infra - revision: b5088d801eded74566abfba1d5a5efcd4354b51d + revision: 07322520e245de985617eca160251a64177bdb91 type: git internal: branch: master diff --git a/opencl/test/unit_test/gen12lp/special_ult_helper_gen12lp.cpp b/opencl/test/unit_test/gen12lp/special_ult_helper_gen12lp.cpp index 032cc07806..cb5abb361b 100644 --- a/opencl/test/unit_test/gen12lp/special_ult_helper_gen12lp.cpp +++ b/opencl/test/unit_test/gen12lp/special_ult_helper_gen12lp.cpp @@ -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; } diff --git a/target_unit_tests/gen12lp/dg1/CMakeLists.txt b/target_unit_tests/gen12lp/dg1/CMakeLists.txt new file mode 100644 index 0000000000..4a95e68b44 --- /dev/null +++ b/target_unit_tests/gen12lp/dg1/CMakeLists.txt @@ -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()