2018-04-06 19:48:49 +08:00
|
|
|
/*
|
2019-02-27 18:39:32 +08:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2018-04-06 19:48:49 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-04-06 19:48:49 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "runtime/device_queue/device_queue_hw.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2018-04-06 19:48:49 +08:00
|
|
|
#include "hw_cmds.h"
|
|
|
|
|
|
|
|
// Keep the order of device_enqueue.h and scheduler_definitions.h as the latter uses defines from the first one
|
|
|
|
#include "runtime/gen10/device_enqueue.h"
|
|
|
|
#include "runtime/gen10/scheduler_definitions.h"
|
|
|
|
#include "unit_tests/scheduler/scheduler_source_tests.h"
|
|
|
|
// Keep this include below scheduler_definitions.h and device_enqueue.h headers as it depends on defines defined in them
|
|
|
|
#include "unit_tests/scheduler/scheduler_source_tests.inl"
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
using namespace NEO;
|
2018-04-06 19:48:49 +08:00
|
|
|
|
|
|
|
typedef SchedulerSourceTest SchedulerSourceTestGen10;
|
|
|
|
GEN10TEST_F(SchedulerSourceTestGen10, GivenDeviceQueueWhenCommandsSizeIsCalculatedThenItEqualsSpaceForEachEnqueueInSchedulerKernelCode) {
|
|
|
|
givenDeviceQueueWhenCommandsSizeIsCalculatedThenItEqualsSpaceForEachEnqueueInSchedulerKernelCodeTest<FamilyType>();
|
|
|
|
}
|
|
|
|
|
|
|
|
GEN10TEST_F(SchedulerSourceTestGen10, GivenDeviceQueueWhenSlbDummyCommandsAreBuildThenSizeUsedIsCorrect) {
|
|
|
|
givenDeviceQueueWhenSlbDummyCommandsAreBuildThenSizeUsedIsCorrectTest<FamilyType>();
|
|
|
|
}
|
|
|
|
|
|
|
|
GEN10TEST_F(SchedulerSourceTestGen10, GivenDeviceQueueThenNumberOfEnqueuesEqualsNumberOfEnqueuesInSchedulerKernelCode) {
|
|
|
|
givenDeviceQueueThenNumberOfEnqueuesEqualsNumberOfEnqueuesInSchedulerKernelCodeTest<FamilyType>();
|
|
|
|
}
|