mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
style: configure readability-identifier-naming.FunctionCase
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
b3261a8e2b
commit
3f04769f07
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2021 Intel Corporation
|
||||
* Copyright (C) 2018-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -12,4 +12,4 @@ struct AubTestsConfig {
|
||||
};
|
||||
|
||||
template <typename GfxFamily>
|
||||
AubTestsConfig GetAubTestsConfig();
|
||||
AubTestsConfig getAubTestsConfig();
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2021 Intel Corporation
|
||||
* Copyright (C) 2018-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -9,7 +9,7 @@
|
||||
#include "shared/test/common/test_configuration/aub_tests/aub_tests_configuration.h"
|
||||
|
||||
template <typename GfxFamily>
|
||||
AubTestsConfig GetAubTestsConfig() {
|
||||
AubTestsConfig getAubTestsConfig() {
|
||||
AubTestsConfig aubTestsConfig;
|
||||
aubTestsConfig.testCanonicalAddress = true;
|
||||
return aubTestsConfig;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
* Copyright (C) 2019-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -11,4 +11,4 @@
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
template AubTestsConfig GetAubTestsConfig<ICLFamily>();
|
||||
template AubTestsConfig getAubTestsConfig<ICLFamily>();
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
* Copyright (C) 2019-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -12,7 +12,7 @@
|
||||
using namespace NEO;
|
||||
|
||||
template <>
|
||||
AubTestsConfig GetAubTestsConfig<TGLLPFamily>() {
|
||||
AubTestsConfig getAubTestsConfig<TGLLPFamily>() {
|
||||
AubTestsConfig aubTestsConfig;
|
||||
aubTestsConfig.testCanonicalAddress = false;
|
||||
return aubTestsConfig;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2021 Intel Corporation
|
||||
* Copyright (C) 2018-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -11,4 +11,4 @@
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
template AubTestsConfig GetAubTestsConfig<BDWFamily>();
|
||||
template AubTestsConfig getAubTestsConfig<BDWFamily>();
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2021 Intel Corporation
|
||||
* Copyright (C) 2018-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -11,4 +11,4 @@
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
template AubTestsConfig GetAubTestsConfig<SKLFamily>();
|
||||
template AubTestsConfig getAubTestsConfig<SKLFamily>();
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2021 Intel Corporation
|
||||
* Copyright (C) 2021-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -12,7 +12,7 @@
|
||||
using namespace NEO;
|
||||
|
||||
template <>
|
||||
AubTestsConfig GetAubTestsConfig<XeHpFamily>() {
|
||||
AubTestsConfig getAubTestsConfig<XeHpFamily>() {
|
||||
AubTestsConfig aubTestsConfig;
|
||||
aubTestsConfig.testCanonicalAddress = true;
|
||||
return aubTestsConfig;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2021 Intel Corporation
|
||||
* Copyright (C) 2021-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -12,7 +12,7 @@
|
||||
using namespace NEO;
|
||||
|
||||
template <>
|
||||
AubTestsConfig GetAubTestsConfig<XE_HPC_COREFamily>() {
|
||||
AubTestsConfig getAubTestsConfig<XE_HPC_COREFamily>() {
|
||||
AubTestsConfig aubTestsConfig;
|
||||
aubTestsConfig.testCanonicalAddress = false;
|
||||
return aubTestsConfig;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2021 Intel Corporation
|
||||
* Copyright (C) 2021-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -12,7 +12,7 @@
|
||||
using namespace NEO;
|
||||
|
||||
template <>
|
||||
AubTestsConfig GetAubTestsConfig<XE_HPG_COREFamily>() {
|
||||
AubTestsConfig getAubTestsConfig<XE_HPG_COREFamily>() {
|
||||
AubTestsConfig aubTestsConfig;
|
||||
aubTestsConfig.testCanonicalAddress = true;
|
||||
return aubTestsConfig;
|
||||
|
||||
Reference in New Issue
Block a user