/* * Copyright (C) 2018-2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "runtime/command_stream/preemption.h" #include "runtime/helpers/preamble.h" #include "runtime/utilities/stackvec.h" #include "test.h" #include "unit_tests/helpers/hw_parse.h" #include "unit_tests/mocks/mock_device.h" #include "unit_tests/mocks/mock_graphics_allocation.h" #include #include using PreambleTest = ::testing::Test; using namespace NEO; HWTEST_F(PreambleTest, givenDisabledPreemptioWhenPreambleAdditionalCommandsSizeIsQueriedThenZeroIsReturned) { auto mockDevice = std::unique_ptr(MockDevice::createWithNewExecutionEnvironment(nullptr)); mockDevice->setPreemptionMode(PreemptionMode::Disabled); auto cmdSize = PreambleHelper::getAdditionalCommandsSize(*mockDevice); EXPECT_EQ(PreemptionHelper::getRequiredPreambleSize(*mockDevice), cmdSize); EXPECT_EQ(0u, cmdSize); } HWCMDTEST_F(IGFX_GEN8_CORE, PreambleTest, givenMidthreadPreemptionWhenPreambleAdditionalCommandsSizeIsQueriedThenSizeForPreemptionPreambleIsReturned) { using GPGPU_CSR_BASE_ADDRESS = typename FamilyType::GPGPU_CSR_BASE_ADDRESS; auto mockDevice = std::unique_ptr(MockDevice::createWithNewExecutionEnvironment(nullptr)); if (mockDevice->getHardwareInfo().capabilityTable.defaultPreemptionMode == PreemptionMode::MidThread) { mockDevice->setPreemptionMode(PreemptionMode::MidThread); auto cmdSize = PreambleHelper::getAdditionalCommandsSize(*mockDevice); EXPECT_EQ(PreemptionHelper::getRequiredPreambleSize(*mockDevice), cmdSize); EXPECT_EQ(sizeof(GPGPU_CSR_BASE_ADDRESS), cmdSize); } } HWCMDTEST_F(IGFX_GEN8_CORE, PreambleTest, givenMidThreadPreemptionWhenPreambleIsProgrammedThenStateSipAndCsrBaseAddressCmdsAreAdded) { using STATE_SIP = typename FamilyType::STATE_SIP; using GPGPU_CSR_BASE_ADDRESS = typename FamilyType::GPGPU_CSR_BASE_ADDRESS; auto mockDevice = std::unique_ptr(MockDevice::createWithNewExecutionEnvironment(nullptr)); mockDevice->setPreemptionMode(PreemptionMode::Disabled); auto cmdSizePreemptionDisabled = PreemptionHelper::getRequiredStateSipCmdSize(*mockDevice); EXPECT_EQ(0u, cmdSizePreemptionDisabled); if (mockDevice->getHardwareInfo().capabilityTable.defaultPreemptionMode == PreemptionMode::MidThread) { mockDevice->setPreemptionMode(PreemptionMode::MidThread); auto cmdSizePreemptionMidThread = PreemptionHelper::getRequiredStateSipCmdSize(*mockDevice); EXPECT_LT(cmdSizePreemptionDisabled, cmdSizePreemptionMidThread); StackVec preambleBuffer(8192); LinearStream preambleStream(&*preambleBuffer.begin(), preambleBuffer.size()); StackVec preemptionBuffer; preemptionBuffer.resize(cmdSizePreemptionMidThread); LinearStream preemptionStream(&*preemptionBuffer.begin(), preemptionBuffer.size()); uintptr_t minCsrAlignment = 2 * 256 * MemoryConstants::kiloByte; MockGraphicsAllocation csrSurface(reinterpret_cast(minCsrAlignment), 1024); PreambleHelper::programPreamble(&preambleStream, *mockDevice, 0U, ThreadArbitrationPolicy::RoundRobin, &csrSurface); PreemptionHelper::programStateSip(preemptionStream, *mockDevice); HardwareParse hwParserPreamble; hwParserPreamble.parseCommands(preambleStream, 0); auto csrCmd = hwParserPreamble.getCommand(); EXPECT_NE(nullptr, csrCmd); EXPECT_EQ(csrSurface.getGpuAddress(), csrCmd->getGpgpuCsrBaseAddress()); HardwareParse hwParserPreemption; hwParserPreemption.parseCommands(preemptionStream, 0); auto stateSipCmd = hwParserPreemption.getCommand(); EXPECT_NE(nullptr, stateSipCmd); } } HWTEST_F(PreambleTest, givenActiveKernelDebuggingWhenPreambleKernelDebuggingCommandsSizeIsQueriedThenCorrectSizeIsReturned) { typedef typename FamilyType::MI_LOAD_REGISTER_IMM MI_LOAD_REGISTER_IMM; auto size = PreambleHelper::getKernelDebuggingCommandsSize(true); auto sizeExpected = 2 * sizeof(MI_LOAD_REGISTER_IMM); EXPECT_EQ(sizeExpected, size); } HWTEST_F(PreambleTest, givenInactiveKernelDebuggingWhenPreambleKernelDebuggingCommandsSizeIsQueriedThenZeroIsReturned) { auto size = PreambleHelper::getKernelDebuggingCommandsSize(false); EXPECT_EQ(0u, size); } HWTEST_F(PreambleTest, whenKernelDebuggingCommandsAreProgrammedThenCorrectCommandsArePlacedIntoStream) { typedef typename FamilyType::MI_LOAD_REGISTER_IMM MI_LOAD_REGISTER_IMM; auto bufferSize = PreambleHelper::getKernelDebuggingCommandsSize(true); auto buffer = std::unique_ptr(new char[bufferSize]); LinearStream stream(buffer.get(), bufferSize); PreambleHelper::programKernelDebugging(&stream); HardwareParse hwParser; hwParser.parseCommands(stream); auto cmdList = hwParser.getCommandsList(); ASSERT_EQ(2u, cmdList.size()); auto it = cmdList.begin(); MI_LOAD_REGISTER_IMM *pCmd = reinterpret_cast(*it); EXPECT_EQ(DebugModeRegisterOffset::registerOffset, pCmd->getRegisterOffset()); EXPECT_EQ(DebugModeRegisterOffset::debugEnabledValue, pCmd->getDataDword()); it++; pCmd = reinterpret_cast(*it); EXPECT_EQ(TdDebugControlRegisterOffset::registerOffset, pCmd->getRegisterOffset()); EXPECT_EQ(TdDebugControlRegisterOffset::debugEnabledValue, pCmd->getDataDword()); } HWTEST_F(PreambleTest, givenKernelDebuggingActiveWhenPreambleIsProgrammedThenProgramKernelDebuggingIsCalled) { typedef typename FamilyType::MI_LOAD_REGISTER_IMM MI_LOAD_REGISTER_IMM; auto mockDevice = std::unique_ptr(MockDevice::createWithNewExecutionEnvironment(nullptr)); mockDevice->setPreemptionMode(PreemptionMode::Disabled); mockDevice->setSourceLevelDebuggerActive(false); StackVec preambleBuffer(8192); LinearStream preambleStream(&*preambleBuffer.begin(), preambleBuffer.size()); PreambleHelper::programPreamble(&preambleStream, *mockDevice, 0U, ThreadArbitrationPolicy::RoundRobin, nullptr); HardwareParse hwParser; hwParser.parseCommands(preambleStream); auto cmdList = hwParser.getCommandsList(); auto miLoadRegImmCountWithoutDebugging = cmdList.size(); mockDevice->setSourceLevelDebuggerActive(true); auto preemptionAllocation = mockDevice->getCommandStreamReceiver().getPreemptionAllocation(); StackVec preambleBuffer2(8192); preambleStream.replaceBuffer(&*preambleBuffer2.begin(), preambleBuffer2.size()); PreambleHelper::programPreamble(&preambleStream, *mockDevice, 0U, ThreadArbitrationPolicy::RoundRobin, preemptionAllocation); HardwareParse hwParser2; hwParser2.parseCommands(preambleStream); cmdList = hwParser2.getCommandsList(); auto miLoadRegImmCountWithDebugging = cmdList.size(); ASSERT_LT(miLoadRegImmCountWithoutDebugging, miLoadRegImmCountWithDebugging); EXPECT_EQ(2u, miLoadRegImmCountWithDebugging - miLoadRegImmCountWithoutDebugging); } HWTEST_F(PreambleTest, givenKernelDebuggingActiveAndMidThreadPreemptionWhenGetAdditionalCommandsSizeIsCalledThen2MiLoadRegisterImmCmdsAreAdded) { auto mockDevice = std::unique_ptr(MockDevice::createWithNewExecutionEnvironment(nullptr)); mockDevice->setPreemptionMode(PreemptionMode::MidThread); mockDevice->setSourceLevelDebuggerActive(false); size_t withoutDebugging = PreambleHelper::getAdditionalCommandsSize(*mockDevice); mockDevice->setSourceLevelDebuggerActive(true); size_t withDebugging = PreambleHelper::getAdditionalCommandsSize(*mockDevice); EXPECT_LT(withoutDebugging, withDebugging); size_t diff = withDebugging - withoutDebugging; size_t sizeExpected = 2 * sizeof(typename FamilyType::MI_LOAD_REGISTER_IMM); EXPECT_EQ(sizeExpected, diff); } HWTEST_F(PreambleTest, givenDefaultPreambleWhenGetThreadsMaxNumberIsCalledThenMaximumNumberOfThreadsIsReturned) { const HardwareInfo &hwInfo = **platformDevices; uint32_t threadsPerEU = (hwInfo.gtSystemInfo.ThreadCount / hwInfo.gtSystemInfo.EUCount) + hwInfo.capabilityTable.extraQuantityThreadsPerEU; uint32_t value = HwHelper::getMaxThreadsForVfe(hwInfo); uint32_t expected = hwInfo.gtSystemInfo.EUCount * threadsPerEU; EXPECT_EQ(expected, value); }