mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
24 lines
569 B
C++
24 lines
569 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/test/unit_test/fixtures/device_fixture.h"
|
|
#include "test.h"
|
|
|
|
using namespace NEO;
|
|
|
|
typedef Test<DeviceFixture> DeviceTest;
|
|
|
|
BXTTEST_F(DeviceTest, getSupportedClVersion12Device) {
|
|
auto version = pDevice->getSupportedClVersion();
|
|
EXPECT_EQ(12u, version);
|
|
}
|
|
|
|
BXTTEST_F(DeviceTest, givenBxtDeviceWhenAskedForProflingTimerResolutionThen52IsReturned) {
|
|
auto resolution = pDevice->getProfilingTimerResolution();
|
|
EXPECT_DOUBLE_EQ(52.083, resolution);
|
|
}
|