mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 08:37:12 +08:00
Cleaned up files: level_zero/core/source/cmdlist/cmdlist_hw.h level_zero/core/source/cmdqueue/cmdqueue.h level_zero/core/source/event/event.h opencl/source/helpers/get_info_status_mapper.h opencl/source/helpers/hardware_commands_helper.h shared/source/helpers/per_thread_data.h Related-To: NEO-5548 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
69 lines
2.6 KiB
C++
69 lines
2.6 KiB
C++
/*
|
|
* Copyright (C) 2022-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/test/unit_test/fixtures/command_container_fixture.h"
|
|
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
|
#include "shared/test/common/mocks/mock_device.h"
|
|
|
|
namespace NEO {
|
|
|
|
void CommandEncodeStatesFixture::setUp() {
|
|
DeviceFixture::setUp();
|
|
cmdContainer = std::make_unique<MyMockCommandContainer>();
|
|
cmdContainer->initialize(pDevice, nullptr, true);
|
|
cmdContainer->setDirtyStateForAllHeaps(false);
|
|
const auto &hwInfo = pDevice->getHardwareInfo();
|
|
cmdContainer->systolicModeSupport = ProductHelper::get(hwInfo.platform.eProductFamily)->isSystolicModeConfigurable(hwInfo);
|
|
}
|
|
|
|
void CommandEncodeStatesFixture::tearDown() {
|
|
cmdContainer.reset();
|
|
DeviceFixture::tearDown();
|
|
}
|
|
|
|
EncodeDispatchKernelArgs CommandEncodeStatesFixture::createDefaultDispatchKernelArgs(Device *device,
|
|
DispatchKernelEncoderI *dispatchInterface,
|
|
const void *threadGroupDimensions,
|
|
bool requiresUncachedMocs) {
|
|
EncodeDispatchKernelArgs args{
|
|
0, // eventAddress
|
|
device, // device
|
|
dispatchInterface, // dispatchInterface
|
|
threadGroupDimensions, // threadGroupDimensions
|
|
nullptr, // additionalCommands
|
|
PreemptionMode::Disabled, // preemptionMode
|
|
1, // partitionCount
|
|
false, // isIndirect
|
|
false, // isPredicate
|
|
false, // isTimestampEvent
|
|
requiresUncachedMocs, // requiresUncachedMocs
|
|
false, // useGlobalAtomics
|
|
false, // isInternal
|
|
false, // isCooperative
|
|
false, // isHostScopeSignalEvent
|
|
false, // isKernelUsingSystemAllocation
|
|
false, // isKernelDispatchedFromImmediateCmdList
|
|
false, // isRcs
|
|
false // dcFlushEnable
|
|
};
|
|
|
|
return args;
|
|
}
|
|
|
|
} // namespace NEO
|
|
|
|
void WalkerThreadFixture::setUp() {
|
|
startWorkGroup[0] = startWorkGroup[1] = startWorkGroup[2] = 0u;
|
|
numWorkGroups[0] = numWorkGroups[1] = numWorkGroups[2] = 1u;
|
|
workGroupSizes[0] = 32u;
|
|
workGroupSizes[1] = workGroupSizes[2] = 1u;
|
|
simd = 32u;
|
|
localIdDimensions = 3u;
|
|
requiredWorkGroupOrder = 0u;
|
|
}
|