mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +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) 2019-2021 Intel Corporation
|
||||
* Copyright (C) 2019-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@ -42,7 +42,7 @@ uint32_t cmdQueueMocs(CommandQueue *pCmdQ) {
|
||||
auto &csr = pCmdQHw->getGpgpuCommandStreamReceiver();
|
||||
HardwareParse hwParse;
|
||||
hwParse.parseCommands<FamilyType>(csr.getCS(0), 0);
|
||||
auto itorCmd = reverse_find<STATE_BASE_ADDRESS *>(hwParse.cmdList.rbegin(), hwParse.cmdList.rend());
|
||||
auto itorCmd = reverseFind<STATE_BASE_ADDRESS *>(hwParse.cmdList.rbegin(), hwParse.cmdList.rend());
|
||||
EXPECT_NE(hwParse.cmdList.rend(), itorCmd);
|
||||
auto sba = genCmdCast<STATE_BASE_ADDRESS *>(*itorCmd);
|
||||
EXPECT_NE(nullptr, sba);
|
||||
|
Reference in New Issue
Block a user