mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 17:41:26 +08:00
Add missing synchronization in the FAHBench kernel which caused hang on DG2. Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com> Related-To: NEO-6946
21 lines
431 B
C++
21 lines
431 B
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/ail/ail_configuration.h"
|
|
#include "shared/source/ail/ail_configuration_base.inl"
|
|
|
|
#include <map>
|
|
|
|
namespace NEO {
|
|
static EnableAIL<IGFX_ROCKETLAKE> enableAILRKL;
|
|
|
|
std::map<std::string_view, std::vector<AILEnumeration>> applicationMapRKL = {};
|
|
|
|
template class AILConfigurationHw<IGFX_ROCKETLAKE>;
|
|
|
|
} // namespace NEO
|