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:
parent
ab580bdc11
commit
59b9ee0127
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue