Disable flush task path on ATS
Related-To: LOCI-2984 Signed-off-by: Aravind Gopalakrishnan <aravind.gopalakrishnan@intel.com>
This commit is contained in:
parent
f7a767c767
commit
4fdb0700fe
|
@ -252,6 +252,14 @@ HWTEST2_F(CommandListImmediateFlushTaskComputeTests, givenDG2CommandListIsInitit
|
|||
EXPECT_EQ(true, commandList->isFlushTaskSubmissionEnabled);
|
||||
}
|
||||
|
||||
HWTEST2_F(CommandListImmediateFlushTaskComputeTests, givenDG2CommandListIsInititalizedThenByDefaultFlushTaskSubmissionEnabled, IsXEHP) {
|
||||
ze_command_queue_desc_t queueDesc = {};
|
||||
ze_result_t returnValue;
|
||||
std::unique_ptr<L0::CommandList> commandList(CommandList::createImmediate(productFamily, device, &queueDesc, false, NEO::EngineGroupType::Compute, returnValue));
|
||||
|
||||
EXPECT_EQ(false, commandList->isFlushTaskSubmissionEnabled);
|
||||
}
|
||||
|
||||
using MatchXeHpc = IsGfxCore<IGFX_XE_HPC_CORE>;
|
||||
HWTEST2_F(CommandListImmediateFlushTaskComputeTests, givenXeHPCCommandListIsInititalizedThenByDefaultFlushTaskSubmissionEnabled, MatchXeHpc) {
|
||||
ze_command_queue_desc_t queueDesc = {};
|
||||
|
|
|
@ -78,7 +78,7 @@ uint32_t HwInfoConfigHw<gfxProduct>::getDeviceMemoryMaxClkRate(const HardwareInf
|
|||
|
||||
template <>
|
||||
bool HwInfoConfigHw<gfxProduct>::isFlushTaskAllowed() const {
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
template class HwInfoConfigHw<gfxProduct>;
|
||||
|
|
Loading…
Reference in New Issue