2021-05-18 10:46:21 +08:00
|
|
|
/*
|
2023-01-06 00:57:56 +08:00
|
|
|
* Copyright (C) 2021-2023 Intel Corporation
|
2021-05-18 10:46:21 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "shared/source/command_container/command_encoder.h"
|
2022-01-13 00:57:42 +08:00
|
|
|
#include "shared/source/command_stream/linear_stream.h"
|
2021-05-18 10:46:21 +08:00
|
|
|
#include "shared/source/command_stream/stream_properties.h"
|
2022-06-24 19:02:41 +08:00
|
|
|
#include "shared/source/gen12lp/hw_cmds.h"
|
2021-07-06 21:29:10 +08:00
|
|
|
#include "shared/test/common/helpers/default_hw_info.h"
|
2023-01-06 00:57:56 +08:00
|
|
|
#include "shared/test/common/mocks/mock_execution_environment.h"
|
2022-06-30 03:17:47 +08:00
|
|
|
#include "shared/test/common/test_macros/hw_test.h"
|
2021-05-18 10:46:21 +08:00
|
|
|
using namespace NEO;
|
|
|
|
|
|
|
|
using CommandEncodeGen12LpTest = ::testing::Test;
|
|
|
|
|
|
|
|
GEN12LPTEST_F(CommandEncodeGen12LpTest, whenProgrammingStateComputeModeThenProperFieldsAreSet) {
|
|
|
|
using STATE_COMPUTE_MODE = typename FamilyType::STATE_COMPUTE_MODE;
|
|
|
|
uint8_t buffer[64]{};
|
2023-01-06 00:57:56 +08:00
|
|
|
MockExecutionEnvironment executionEnvironment{};
|
|
|
|
auto &rootDeviceEnvironment = *executionEnvironment.rootDeviceEnvironments[0];
|
2021-05-18 10:46:21 +08:00
|
|
|
StateComputeModeProperties properties;
|
|
|
|
auto pLinearStream = std::make_unique<LinearStream>(buffer, sizeof(buffer));
|
2023-01-06 00:57:56 +08:00
|
|
|
EncodeComputeMode<FamilyType>::programComputeModeCommand(*pLinearStream, properties, rootDeviceEnvironment, nullptr);
|
2021-05-18 10:46:21 +08:00
|
|
|
auto pScm = reinterpret_cast<STATE_COMPUTE_MODE *>(pLinearStream->getCpuBase());
|
2022-03-07 22:31:53 +08:00
|
|
|
EXPECT_EQ(FamilyType::stateComputeModeForceNonCoherentMask, pScm->getMaskBits());
|
|
|
|
EXPECT_EQ(STATE_COMPUTE_MODE::FORCE_NON_COHERENT_FORCE_GPU_NON_COHERENT, pScm->getForceNonCoherent());
|
2021-05-18 10:46:21 +08:00
|
|
|
|
2022-03-07 22:31:53 +08:00
|
|
|
properties.isCoherencyRequired.value = 1;
|
2021-05-18 10:46:21 +08:00
|
|
|
pLinearStream = std::make_unique<LinearStream>(buffer, sizeof(buffer));
|
2023-01-06 00:57:56 +08:00
|
|
|
EncodeComputeMode<FamilyType>::programComputeModeCommand(*pLinearStream, properties, rootDeviceEnvironment, nullptr);
|
2021-05-18 10:46:21 +08:00
|
|
|
pScm = reinterpret_cast<STATE_COMPUTE_MODE *>(pLinearStream->getCpuBase());
|
|
|
|
EXPECT_EQ(FamilyType::stateComputeModeForceNonCoherentMask, pScm->getMaskBits());
|
2022-03-07 22:31:53 +08:00
|
|
|
EXPECT_EQ(STATE_COMPUTE_MODE::FORCE_NON_COHERENT_FORCE_DISABLED, pScm->getForceNonCoherent());
|
2021-05-18 10:46:21 +08:00
|
|
|
}
|