mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 21:18:24 +08:00
Enable bcs split in L0
Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
09bf464327
commit
8160a59f2f
@@ -16,7 +16,7 @@ bool ApiSpecificConfig::isStatelessCompressionSupported() {
|
||||
}
|
||||
|
||||
bool ApiSpecificConfig::isBcsSplitWaSupported() {
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool ApiSpecificConfig::getHeapConfiguration() {
|
||||
|
||||
@@ -30,8 +30,8 @@ TEST(ApiSpecificConfigL0Tests, WhenCheckingIfStatelessCompressionIsSupportedThen
|
||||
EXPECT_FALSE(ApiSpecificConfig::isStatelessCompressionSupported());
|
||||
}
|
||||
|
||||
TEST(ApiSpecificConfigL0Tests, WhenCheckingIfBcsSplitWaIsSupportedThenReturnFalse) {
|
||||
EXPECT_FALSE(ApiSpecificConfig::isBcsSplitWaSupported());
|
||||
TEST(ApiSpecificConfigL0Tests, WhenCheckingIfBcsSplitWaIsSupportedThenReturnTrue) {
|
||||
EXPECT_TRUE(ApiSpecificConfig::isBcsSplitWaSupported());
|
||||
}
|
||||
|
||||
TEST(ApiSpecificConfigL0Tests, givenMaxAllocSizeWhenGettingReducedMaxAllocSizeThenReturnSameValue) {
|
||||
|
||||
Reference in New Issue
Block a user