mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 17:13:29 +08:00
41 lines
1.4 KiB
C++
41 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/test/unit_test/fixtures/implicit_scaling_fixture.h"
|
|
|
|
#include "shared/source/gmm_helper/gmm_helper.h"
|
|
#include "shared/source/helpers/aligned_memory.h"
|
|
#include "shared/source/os_interface/os_interface.h"
|
|
#include "shared/test/common/helpers/default_hw_info.h"
|
|
|
|
void ImplicitScalingFixture::setUp() {
|
|
CommandEncodeStatesFixture::setUp();
|
|
apiSupportBackup = std::make_unique<VariableBackup<bool>>(&ImplicitScaling::apiSupport, true);
|
|
osLocalMemoryBackup = std::make_unique<VariableBackup<bool>>(&OSInterface::osEnableLocalMemory, true);
|
|
|
|
singleTile = DeviceBitfield(static_cast<uint32_t>(maxNBitValue(1)));
|
|
twoTile = DeviceBitfield(static_cast<uint32_t>(maxNBitValue(2)));
|
|
|
|
alignedMemory = alignedMalloc(bufferSize, 4096);
|
|
|
|
auto gmmHelper = pDevice->getGmmHelper();
|
|
auto canonizedGpuAddress = gmmHelper->canonize(gpuVa);
|
|
cmdBufferAlloc.setCpuPtrAndGpuAddress(alignedMemory, canonizedGpuAddress);
|
|
|
|
commandStream.replaceBuffer(alignedMemory, bufferSize);
|
|
commandStream.replaceGraphicsAllocation(&cmdBufferAlloc);
|
|
|
|
testHardwareInfo = *defaultHwInfo;
|
|
|
|
dcFlushFlag = pDevice->getDefaultEngine().commandStreamReceiver->getDcFlushSupport();
|
|
}
|
|
|
|
void ImplicitScalingFixture::tearDown() {
|
|
alignedFree(alignedMemory);
|
|
CommandEncodeStatesFixture::tearDown();
|
|
}
|