Drop stalling command for partitioned kernels on xe hpc platform

Related-To: NEO-6262

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz 2021-12-09 19:35:36 +00:00 committed by Compute-Runtime-Automation
parent ab580bdc11
commit 59b9ee0127
3 changed files with 2 additions and 4 deletions

View File

@ -1196,8 +1196,6 @@ HWTEST2_F(MultiTileCommandListAppendLaunchFunctionXeHpCoreTest, givenCooperative
ASSERT_EQ(ZE_RESULT_SUCCESS, result);
auto sizeUsedWithCooperativeKernel = commandListWithCooperativeKernel->commandContainer.getCommandStream()->getUsed() - sizeBefore;
EXPECT_LE(sizeUsedWithCooperativeKernel, estimateWithCooperativeKernel);
EXPECT_GT(sizeUsedWithNonCooperativeKernel, sizeUsedWithCooperativeKernel);
}
} // namespace ult

View File

@ -13,7 +13,7 @@ namespace NEO {
using Family = XE_HPC_COREFamily;
template <>
bool ImplicitScalingDispatch<Family>::pipeControlStallRequired = true;
bool ImplicitScalingDispatch<Family>::pipeControlStallRequired = false;
template struct ImplicitScalingDispatch<Family>;
} // namespace NEO

View File

@ -8,5 +8,5 @@
#include "shared/test/common/fixtures/implicit_scaling_fixture.h"
HWTEST2_F(ImplicitScalingTests, GivenXeHpcWhenCheckingPipeControlStallRequiredThenExpectTrue, IsXeHpcCore) {
EXPECT_TRUE(ImplicitScalingDispatch<FamilyType>::getPipeControlStallRequired());
EXPECT_FALSE(ImplicitScalingDispatch<FamilyType>::getPipeControlStallRequired());
}