47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/ail/ail_configuration.h"
|
|
#include "shared/test/common/helpers/unit_test_helper.h"
|
|
#include "shared/test/common/helpers/variable_backup.h"
|
|
|
|
#include "test.h"
|
|
|
|
namespace NEO {
|
|
using IsSKL = IsProduct<IGFX_SKYLAKE>;
|
|
|
|
using AILTests = ::testing::Test;
|
|
template <PRODUCT_FAMILY productFamily>
|
|
class AILMock : public AILConfigurationHw<productFamily> {
|
|
public:
|
|
using AILConfiguration::processName;
|
|
};
|
|
|
|
HWTEST2_F(AILTests, givenUninitializedTemplateWhenGetAILConfigurationThenNullptrIsReturned, IsSKL) {
|
|
auto ailConfiguration = AILConfiguration::get(productFamily);
|
|
|
|
ASSERT_EQ(nullptr, ailConfiguration);
|
|
}
|
|
|
|
HWTEST2_F(AILTests, givenInitilizedTemplateWhenApplyWithBlenderIsCalledThenFP64SupportIsEnabled, IsAtLeastGen12lp) {
|
|
VariableBackup<AILConfiguration *> ailConfigurationBackup(&ailConfigurationTable[productFamily]);
|
|
|
|
AILMock<productFamily> ailTemp;
|
|
ailTemp.processName = "blender";
|
|
ailConfigurationTable[productFamily] = &ailTemp;
|
|
|
|
auto ailConfiguration = AILConfiguration::get(productFamily);
|
|
ASSERT_NE(nullptr, ailConfiguration);
|
|
|
|
NEO::RuntimeCapabilityTable rtTable = {};
|
|
rtTable.ftrSupportsFP64 = false;
|
|
|
|
ailConfiguration->apply(rtTable);
|
|
|
|
EXPECT_EQ(rtTable.ftrSupportsFP64, true);
|
|
}
|
|
} // namespace NEO
|