mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Remove getSupportedClVersion function from Device
Related-To: NEO-3938 Change-Id: Ida4e0d8b3a758376ea433960c8a329c061b15666 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:

committed by
sys_ocldev

parent
307a5cb822
commit
5be85293d6
@ -23,6 +23,6 @@ struct BdwDeviceTest : public DeviceFixture,
|
||||
};
|
||||
|
||||
BDWTEST_F(BdwDeviceTest, givenBdwDeviceWhenAskedForClVersionThenReport21) {
|
||||
auto version = pDevice->getSupportedClVersion();
|
||||
auto version = pClDevice->getSupportedClVersion();
|
||||
EXPECT_EQ(21u, version);
|
||||
}
|
||||
|
@ -27,7 +27,7 @@ BDWTEST_F(BdwSchedulerTest, givenCallToDispatchSchedulerWhenPipeControlWithCSSta
|
||||
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
|
||||
if (pDevice->getSupportedClVersion() >= 20) {
|
||||
if (pClDevice->getSupportedClVersion() >= 20) {
|
||||
DeviceQueueHw<FamilyType> *pDevQueueHw = castToObject<DeviceQueueHw<FamilyType>>(pDevQueue);
|
||||
SchedulerKernel &scheduler = context->getSchedulerKernel();
|
||||
|
||||
|
Reference in New Issue
Block a user