27 lines
627 B
C++
27 lines
627 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/test/unit_test/direct_submission/dispatchers/dispatcher_fixture.h"
|
|
|
|
#include "shared/source/helpers/aligned_memory.h"
|
|
#include "shared/source/helpers/constants.h"
|
|
|
|
using namespace NEO;
|
|
|
|
void DispatcherFixture::SetUp() {
|
|
DeviceFixture::SetUp();
|
|
|
|
bufferAllocation = alignedMalloc(MemoryConstants::pageSize, MemoryConstants::pageSize);
|
|
cmdBuffer.replaceBuffer(bufferAllocation, MemoryConstants::pageSize);
|
|
}
|
|
|
|
void DispatcherFixture::TearDown() {
|
|
alignedFree(bufferAllocation);
|
|
|
|
DeviceFixture::TearDown();
|
|
}
|