1
1
/*
2
- * Copyright (C) 2021-2023 Intel Corporation
2
+ * Copyright (C) 2021-2024 Intel Corporation
3
3
*
4
4
* SPDX-License-Identifier: MIT
5
5
*
@@ -426,7 +426,7 @@ HWCMDTEST_F(IGFX_XE_HP_CORE, WalkerPartitionTests, givenProgramComputeWalkerWhen
426
426
427
427
walker.setPartitionType (WalkerType::PARTITION_TYPE::PARTITION_TYPE_X);
428
428
void *walkerCommandAddress = cmdBufferAddress;
429
- programPartitionedWalker<FamilyType>(cmdBufferAddress, totalBytesProgrammed, &walker, 2u , false );
429
+ programPartitionedWalker<FamilyType>(cmdBufferAddress, totalBytesProgrammed, &walker, 2u , 2 , false );
430
430
auto walkerCommand = genCmdCast<WalkerType *>(walkerCommandAddress);
431
431
432
432
ASSERT_NE (nullptr , walkerCommand);
@@ -437,7 +437,7 @@ HWCMDTEST_F(IGFX_XE_HP_CORE, WalkerPartitionTests, givenProgramComputeWalkerWhen
437
437
438
438
walker.setPartitionType (WalkerType::PARTITION_TYPE::PARTITION_TYPE_Y);
439
439
walkerCommandAddress = cmdBufferAddress;
440
- programPartitionedWalker<FamilyType>(cmdBufferAddress, totalBytesProgrammed, &walker, 2u , false );
440
+ programPartitionedWalker<FamilyType>(cmdBufferAddress, totalBytesProgrammed, &walker, 2u , 2 , false );
441
441
walkerCommand = genCmdCast<WalkerType *>(walkerCommandAddress);
442
442
443
443
ASSERT_NE (nullptr , walkerCommand);
@@ -446,7 +446,7 @@ HWCMDTEST_F(IGFX_XE_HP_CORE, WalkerPartitionTests, givenProgramComputeWalkerWhen
446
446
447
447
walker.setPartitionType (WalkerType::PARTITION_TYPE::PARTITION_TYPE_Z);
448
448
walkerCommandAddress = cmdBufferAddress;
449
- programPartitionedWalker<FamilyType>(cmdBufferAddress, totalBytesProgrammed, &walker, 2u , false );
449
+ programPartitionedWalker<FamilyType>(cmdBufferAddress, totalBytesProgrammed, &walker, 2u , 2 , false );
450
450
walkerCommand = genCmdCast<WalkerType *>(walkerCommandAddress);
451
451
452
452
ASSERT_NE (nullptr , walkerCommand);
@@ -456,7 +456,7 @@ HWCMDTEST_F(IGFX_XE_HP_CORE, WalkerPartitionTests, givenProgramComputeWalkerWhen
456
456
// if we program with partition Count == 1 then do not trigger partition stuff
457
457
walker.setPartitionType (WalkerType::PARTITION_TYPE::PARTITION_TYPE_DISABLED);
458
458
walkerCommandAddress = cmdBufferAddress;
459
- programPartitionedWalker<FamilyType>(cmdBufferAddress, totalBytesProgrammed, &walker, 1u , false );
459
+ programPartitionedWalker<FamilyType>(cmdBufferAddress, totalBytesProgrammed, &walker, 1u , 2 , false );
460
460
walkerCommand = genCmdCast<WalkerType *>(walkerCommandAddress);
461
461
462
462
ASSERT_NE (nullptr , walkerCommand);
@@ -1758,7 +1758,7 @@ HWCMDTEST_F(IGFX_XE_HP_CORE, WalkerPartitionTests, givenForceExecutionOnSingleTi
1758
1758
bool forceExecutionOnSingleTile = false ;
1759
1759
walker.setPartitionType (WalkerType::PARTITION_TYPE::PARTITION_TYPE_X);
1760
1760
void *walkerCommandAddress = cmdBufferAddress;
1761
- programPartitionedWalker<FamilyType>(cmdBufferAddress, totalBytesProgrammed, &walker, 2u , forceExecutionOnSingleTile);
1761
+ programPartitionedWalker<FamilyType>(cmdBufferAddress, totalBytesProgrammed, &walker, 2u , 2 , forceExecutionOnSingleTile);
1762
1762
auto walkerCommand = genCmdCast<WalkerType *>(walkerCommandAddress);
1763
1763
1764
1764
ASSERT_NE (nullptr , walkerCommand);
@@ -1768,7 +1768,7 @@ HWCMDTEST_F(IGFX_XE_HP_CORE, WalkerPartitionTests, givenForceExecutionOnSingleTi
1768
1768
1769
1769
forceExecutionOnSingleTile = true ;
1770
1770
walkerCommandAddress = cmdBufferAddress;
1771
- programPartitionedWalker<FamilyType>(cmdBufferAddress, totalBytesProgrammed, &walker, 2u , forceExecutionOnSingleTile);
1771
+ programPartitionedWalker<FamilyType>(cmdBufferAddress, totalBytesProgrammed, &walker, 2u , 2 , forceExecutionOnSingleTile);
1772
1772
walkerCommand = genCmdCast<WalkerType *>(walkerCommandAddress);
1773
1773
1774
1774
ASSERT_NE (nullptr , walkerCommand);
0 commit comments