134 lines
3.5 KiB
C++
134 lines
3.5 KiB
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "runtime/event/user_event.h"
|
|
#include "runtime/command_queue/command_queue.h"
|
|
#include "runtime/helpers/aligned_memory.h"
|
|
#include "runtime/helpers/ptr_math.h"
|
|
#include "unit_tests/command_queue/command_queue_fixture.h"
|
|
#include "unit_tests/command_stream/command_stream_fixture.h"
|
|
#include "unit_tests/mocks/mock_buffer.h"
|
|
#include "unit_tests/mocks/mock_context.h"
|
|
#include "unit_tests/fixtures/device_fixture.h"
|
|
#include "unit_tests/fixtures/hello_world_fixture.h"
|
|
#include "unit_tests/indirect_heap/indirect_heap_fixture.h"
|
|
#include "unit_tests/utilities/base_object_utils.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace OCLRT;
|
|
|
|
struct EventTest
|
|
: public DeviceFixture,
|
|
public CommandQueueFixture,
|
|
public CommandStreamFixture,
|
|
public IndirectHeapFixture,
|
|
public ::testing::Test {
|
|
|
|
using CommandQueueFixture::SetUp;
|
|
using IndirectHeapFixture::SetUp;
|
|
|
|
void SetUp() override {
|
|
DeviceFixture::SetUp();
|
|
CommandQueueFixture::SetUp(&mockContext, pDevice, 0);
|
|
CommandStreamFixture::SetUp(pCmdQ);
|
|
IndirectHeapFixture::SetUp(pCmdQ);
|
|
}
|
|
|
|
void TearDown() override {
|
|
IndirectHeapFixture::TearDown();
|
|
CommandStreamFixture::TearDown();
|
|
CommandQueueFixture::TearDown();
|
|
DeviceFixture::TearDown();
|
|
}
|
|
MockContext mockContext;
|
|
};
|
|
|
|
struct InternalsEventTest
|
|
: public DeviceFixture,
|
|
public ::testing::Test {
|
|
|
|
InternalsEventTest() {
|
|
}
|
|
|
|
void SetUp() {
|
|
DeviceFixture::SetUp();
|
|
mockContext = new MockContext(pDevice);
|
|
}
|
|
|
|
void TearDown() {
|
|
delete mockContext;
|
|
DeviceFixture::TearDown();
|
|
}
|
|
|
|
MockContext *mockContext;
|
|
};
|
|
|
|
struct MyUserEvent : public VirtualEvent {
|
|
bool wait(bool blocking, bool quickKmdSleep) override {
|
|
return VirtualEvent::wait(blocking, quickKmdSleep);
|
|
};
|
|
uint32_t getTaskLevel() override {
|
|
return VirtualEvent::getTaskLevel();
|
|
};
|
|
};
|
|
|
|
struct MyEvent : public Event {
|
|
MyEvent(CommandQueue *cmdQueue, cl_command_type cmdType, uint32_t taskLevel, uint32_t taskCount)
|
|
: Event(cmdQueue, cmdType, taskLevel, taskCount) {
|
|
}
|
|
TimeStampData getQueueTimeStamp() {
|
|
return this->queueTimeStamp;
|
|
};
|
|
|
|
TimeStampData getSubmitTimeStamp() {
|
|
return this->submitTimeStamp;
|
|
};
|
|
|
|
uint64_t getStartTimeStamp() {
|
|
return this->startTimeStamp;
|
|
};
|
|
|
|
uint64_t getEndTimeStamp() {
|
|
return this->endTimeStamp;
|
|
};
|
|
|
|
uint64_t getCompleteTimeStamp() {
|
|
return this->completeTimeStamp;
|
|
}
|
|
|
|
uint64_t getGlobalStartTimestamp() const {
|
|
return this->globalStartTimestamp;
|
|
}
|
|
|
|
bool getDataCalcStatus() const {
|
|
return this->dataCalculated;
|
|
}
|
|
|
|
void calculateProfilingDataInternal(uint64_t contextStartTS, uint64_t contextEndTS, uint64_t *contextCompleteTS, uint64_t globalStartTS) override {
|
|
if (DebugManager.flags.ReturnRawGpuTimestamps.get()) {
|
|
globalStartTimestamp = globalStartTS;
|
|
}
|
|
Event::calculateProfilingDataInternal(contextStartTS, contextEndTS, contextCompleteTS, globalStartTS);
|
|
}
|
|
|
|
uint64_t globalStartTimestamp;
|
|
};
|
|
|
|
class MockEventTests : public HelloWorldTest<HelloWorldFixtureFactory> {
|
|
public:
|
|
void TearDown() {
|
|
uEvent->setStatus(-1);
|
|
uEvent.reset();
|
|
HelloWorldFixture::TearDown();
|
|
}
|
|
|
|
protected:
|
|
ReleaseableObjectPtr<UserEvent> uEvent;
|
|
};
|