Skip to content

Commit ed05996

Browse files
committed
CppLint
1 parent 15bc21a commit ed05996

File tree

1 file changed

+3
-3
lines changed
  • src/plugins/intel_gpu/tests/functional/subgraph_tests/dynamic

1 file changed

+3
-3
lines changed

src/plugins/intel_gpu/tests/functional/subgraph_tests/dynamic/kv_cache.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ class KVCacheTests: public ::testing::Test {
156156
std::map<ov::Output<ov::Node>, ov::PartialShape> shapes = {
157157
{ref_model->input(0), kv_cache_copy.get_shape()},
158158
{ref_model->input(1), new_token_data.get_shape()},
159-
{ref_model->input(2), matmul_data.get_shape()},
159+
{ref_model->input(2), matmul_data.get_shape()}
160160
};
161161
ref_model->reshape(shapes);
162162

@@ -342,8 +342,8 @@ class KVCacheTests: public ::testing::Test {
342342
auto input2 = ref_model->get_parameters().at(2);
343343
auto input3 = fuse_cache_reorder ? ref_model->get_parameters().at(3) : nullptr;
344344
std::map<ov::Output<ov::Node>, ov::PartialShape> input_shapes = {
345-
{input0, kv_cache.get_shape()},
346-
{input1, new_token_data.get_shape()},
345+
{input0, kv_cache.get_shape()},
346+
{input1, new_token_data.get_shape()},
347347
{input2, matmul_data.get_shape()}
348348
};
349349
std::map<std::shared_ptr<ov::Node>, ov::Tensor> inputs = {

0 commit comments

Comments
 (0)