Files
compute-runtime/shared/source/compiler_interface/compiler_extra_settings.cpp
2021-09-09 18:17:09 +02:00

17 lines
338 B
C++

/*
* Copyright (C) 2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/compiler_interface/compiler_interface.h"
namespace NEO {
bool CompilerInterface::isMidThreadPreemptionSupported(const HardwareInfo &hwInfo) {
return hwInfo.featureTable.ftrGpGpuMidThreadLevelPreempt;
}
} // namespace NEO