52 lines
2.0 KiB
C++
52 lines
2.0 KiB
C++
/*
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/test/common/libult/ult_command_stream_receiver.h"
|
|
#include "shared/test/common/test_macros/test.h"
|
|
|
|
#include "opencl/test/unit_test/fixtures/media_kernel_fixture.h"
|
|
|
|
using namespace NEO;
|
|
|
|
typedef MediaKernelFixture<HelloWorldFixtureFactory> MediaKernelTest;
|
|
|
|
GEN8TEST_F(MediaKernelTest, givenGen8CSRWhenEnqueueVmeKernelThenProgramOnlyPipelineSelection) {
|
|
typedef typename BDWFamily::PIPELINE_SELECT PIPELINE_SELECT;
|
|
enqueueVmeKernel<FamilyType>();
|
|
auto pCmd = getCommand<PIPELINE_SELECT>();
|
|
auto expectedMask = pipelineSelectEnablePipelineSelectMaskBits;
|
|
auto expectedPipelineSelection = PIPELINE_SELECT::PIPELINE_SELECTION_GPGPU;
|
|
EXPECT_EQ(expectedMask, pCmd->getMaskBits());
|
|
EXPECT_EQ(expectedPipelineSelection, pCmd->getPipelineSelection());
|
|
}
|
|
|
|
GEN8TEST_F(MediaKernelTest, givenGen8CsrWhenEnqueueVmeKernelThenVmeSubslicesConfigDoesntChangeToFalse) {
|
|
auto csr = static_cast<UltCommandStreamReceiver<FamilyType> *>(&pDevice->getGpgpuCommandStreamReceiver());
|
|
csr->lastVmeSubslicesConfig = true;
|
|
enqueueVmeKernel<FamilyType>();
|
|
EXPECT_TRUE(csr->lastVmeSubslicesConfig);
|
|
}
|
|
|
|
GEN8TEST_F(MediaKernelTest, givenGen8CsrWhenEnqueueVmeKernelThenVmeSubslicesConfigDoesntChangeToTrue) {
|
|
auto csr = static_cast<UltCommandStreamReceiver<FamilyType> *>(&pDevice->getGpgpuCommandStreamReceiver());
|
|
csr->lastVmeSubslicesConfig = false;
|
|
enqueueVmeKernel<FamilyType>();
|
|
EXPECT_FALSE(csr->lastVmeSubslicesConfig);
|
|
}
|
|
|
|
GEN8TEST_F(MediaKernelTest, GivenGen8WhenGettingCmdSizeForMediaSamplerThenZeroIsReturned) {
|
|
auto csr = static_cast<UltCommandStreamReceiver<FamilyType> *>(&pDevice->getGpgpuCommandStreamReceiver());
|
|
|
|
csr->lastVmeSubslicesConfig = false;
|
|
EXPECT_EQ(0u, csr->getCmdSizeForMediaSampler(false));
|
|
EXPECT_EQ(0u, csr->getCmdSizeForMediaSampler(true));
|
|
|
|
csr->lastVmeSubslicesConfig = true;
|
|
EXPECT_EQ(0u, csr->getCmdSizeForMediaSampler(false));
|
|
EXPECT_EQ(0u, csr->getCmdSizeForMediaSampler(true));
|
|
}
|