@@ -140,12 +140,6 @@ TEST_F(DeviceGetCapsTest, WhenCreatingDeviceThenCapsArePopulatedCorrectly) {
140140 EXPECT_EQ (expectedDeviceSubgroups[i], sharedCaps.maxSubGroups [i]);
141141 }
142142
143- if (device->getEnabledClVersion () >= 21 ) {
144- EXPECT_TRUE (caps.independentForwardProgress != 0 );
145- } else {
146- EXPECT_FALSE (caps.independentForwardProgress != 0 );
147- }
148-
149143 EXPECT_EQ (sharedCaps.maxWorkGroupSize / hwHelper.getMinimalSIMDSize (), caps.maxNumOfSubGroups );
150144
151145 EXPECT_EQ (1024u , caps.maxOnDeviceEvents );
@@ -396,15 +390,6 @@ TEST_F(DeviceGetCapsTest, givenEnableSharingFormatQuerySetTrueAndEnabledMultiple
396390 EXPECT_THAT (caps.deviceExtensions , ::testing::Not (::testing::HasSubstr (std::string (" cl_intel_sharing_format_query " ))));
397391}
398392
399- TEST_F (DeviceGetCapsTest, givenOpenCLVersion21WhenCapsAreCreatedThenDeviceReportsClKhrSubgroupsExtension) {
400- DebugManagerStateRestore dbgRestorer;
401- DebugManager.flags .ForceOCLVersion .set (21 );
402- auto device = std::make_unique<MockClDevice>(MockDevice::createWithNewExecutionEnvironment<MockDevice>(defaultHwInfo.get ()));
403- const auto &caps = device->getDeviceInfo ();
404-
405- EXPECT_THAT (caps.deviceExtensions , testing::HasSubstr (std::string (" cl_khr_subgroups" )));
406- }
407-
408393TEST_F (DeviceGetCapsTest, givenOpenCLVersion20WhenCapsAreCreatedThenDeviceDoesntReportClKhrSubgroupsExtension) {
409394 DebugManagerStateRestore dbgRestorer;
410395 DebugManager.flags .ForceOCLVersion .set (20 );
0 commit comments