mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 11:03:02 +08:00
24 lines
487 B
Plaintext
24 lines
487 B
Plaintext
|
|
/*
|
||
|
|
* Copyright (C) 2021 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "shared/source/helpers/compiler_hw_info_config.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
|
||
|
|
template <PRODUCT_FAMILY gfxProduct>
|
||
|
|
bool CompilerHwInfoConfigHw<gfxProduct>::isForceEmuInt32DivRemSPRequired() const {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
template <PRODUCT_FAMILY gfxProduct>
|
||
|
|
bool CompilerHwInfoConfigHw<gfxProduct>::isStatelessToStatefulBufferOffsetSupported() const {
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace NEO
|