168 lines
3.8 KiB
C++
168 lines
3.8 KiB
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "cl_api_tests.h"
|
|
#include "unit_tests/fixtures/device_fixture.h"
|
|
#include "unit_tests/mocks/mock_ostime.h"
|
|
|
|
using namespace OCLRT;
|
|
|
|
struct FailOSTime : public MockOSTime {
|
|
public:
|
|
bool getCpuGpuTime(TimeStampData *pGpuCpuTime) override {
|
|
return false;
|
|
}
|
|
bool getCpuTime(uint64_t *timeStamp) override {
|
|
return false;
|
|
};
|
|
};
|
|
|
|
typedef api_tests clGetDeviceAndHostTimerTest;
|
|
typedef api_tests clGetHostTimerTest;
|
|
|
|
namespace ULT {
|
|
|
|
TEST_F(clGetDeviceAndHostTimerTest, NullDevice) {
|
|
cl_ulong device_timestamp = 0;
|
|
cl_ulong host_timestamp = 0;
|
|
|
|
retVal = clGetDeviceAndHostTimer(
|
|
nullptr,
|
|
&device_timestamp,
|
|
&host_timestamp);
|
|
|
|
EXPECT_EQ(CL_INVALID_DEVICE, retVal);
|
|
}
|
|
|
|
TEST_F(clGetDeviceAndHostTimerTest, NullHostTimer) {
|
|
cl_ulong device_timestamp = 0;
|
|
|
|
retVal = clGetDeviceAndHostTimer(
|
|
devices[0],
|
|
&device_timestamp,
|
|
nullptr);
|
|
|
|
EXPECT_EQ(CL_INVALID_VALUE, retVal);
|
|
}
|
|
|
|
TEST_F(clGetDeviceAndHostTimerTest, NullDevicesTimer) {
|
|
cl_ulong host_timestamp = 0;
|
|
|
|
retVal = clGetDeviceAndHostTimer(
|
|
devices[0],
|
|
nullptr,
|
|
&host_timestamp);
|
|
|
|
EXPECT_EQ(CL_INVALID_VALUE, retVal);
|
|
}
|
|
|
|
TEST_F(clGetDeviceAndHostTimerTest, OsCallPass) {
|
|
cl_ulong device_timestamp = 0;
|
|
cl_ulong host_timestamp = 0;
|
|
cl_ulong zero_timestamp = 0;
|
|
|
|
auto mDev = MockDevice::createWithNewExecutionEnvironment<MockDevice>(nullptr);
|
|
mDev->setOSTime(new MockOSTime());
|
|
|
|
retVal = clGetDeviceAndHostTimer(
|
|
mDev,
|
|
&device_timestamp,
|
|
&host_timestamp);
|
|
|
|
EXPECT_GT(device_timestamp, zero_timestamp);
|
|
EXPECT_GT(host_timestamp, zero_timestamp);
|
|
EXPECT_EQ(retVal, CL_SUCCESS);
|
|
|
|
delete mDev;
|
|
}
|
|
|
|
TEST_F(clGetDeviceAndHostTimerTest, OsCallFail) {
|
|
cl_ulong device_timestamp = 0;
|
|
cl_ulong host_timestamp = 0;
|
|
cl_ulong zero_timestamp = 0;
|
|
|
|
auto mDev = MockDevice::createWithNewExecutionEnvironment<MockDevice>(nullptr);
|
|
mDev->setOSTime(new FailOSTime());
|
|
|
|
retVal = clGetDeviceAndHostTimer(
|
|
mDev,
|
|
&device_timestamp,
|
|
&host_timestamp);
|
|
|
|
EXPECT_EQ(device_timestamp, zero_timestamp);
|
|
EXPECT_EQ(host_timestamp, zero_timestamp);
|
|
EXPECT_EQ(retVal, CL_OUT_OF_RESOURCES);
|
|
|
|
delete mDev;
|
|
}
|
|
|
|
TEST_F(clGetHostTimerTest, NullDevice) {
|
|
cl_ulong host_timestamp = 0;
|
|
|
|
retVal = clGetHostTimer(
|
|
nullptr,
|
|
&host_timestamp);
|
|
|
|
EXPECT_EQ(CL_INVALID_DEVICE, retVal);
|
|
}
|
|
|
|
TEST_F(clGetHostTimerTest, NullHostTimer) {
|
|
retVal = clGetHostTimer(
|
|
devices[0],
|
|
nullptr);
|
|
|
|
EXPECT_EQ(CL_INVALID_VALUE, retVal);
|
|
}
|
|
|
|
TEST_F(clGetHostTimerTest, ActualHostTimer) {
|
|
cl_ulong host_timestamp = 0;
|
|
cl_ulong zero_timestamp = 0;
|
|
|
|
retVal = clGetHostTimer(
|
|
devices[0],
|
|
&host_timestamp);
|
|
|
|
EXPECT_GE(host_timestamp, zero_timestamp);
|
|
EXPECT_EQ(retVal, CL_SUCCESS);
|
|
}
|
|
|
|
TEST_F(clGetHostTimerTest, OsCallPass) {
|
|
cl_ulong host_timestamp = 0;
|
|
cl_ulong zero_timestamp = 0;
|
|
|
|
auto mDev = MockDevice::createWithNewExecutionEnvironment<MockDevice>(nullptr);
|
|
mDev->setOSTime(new MockOSTime());
|
|
|
|
retVal = clGetHostTimer(
|
|
mDev,
|
|
&host_timestamp);
|
|
|
|
EXPECT_GE(host_timestamp, zero_timestamp);
|
|
EXPECT_EQ(retVal, CL_SUCCESS);
|
|
|
|
delete mDev;
|
|
}
|
|
|
|
TEST_F(clGetHostTimerTest, OsCallFail) {
|
|
cl_ulong host_timestamp = 0;
|
|
cl_ulong zero_timestamp = 0;
|
|
|
|
auto mDev = MockDevice::createWithNewExecutionEnvironment<MockDevice>(nullptr);
|
|
mDev->setOSTime(new FailOSTime());
|
|
|
|
retVal = clGetHostTimer(
|
|
mDev,
|
|
&host_timestamp);
|
|
|
|
EXPECT_EQ(host_timestamp, zero_timestamp);
|
|
EXPECT_EQ(retVal, CL_OUT_OF_RESOURCES);
|
|
|
|
delete mDev;
|
|
}
|
|
|
|
} // namespace ULT
|