Skip to content

Commit

Permalink
code clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
esmirno committed Feb 4, 2025
1 parent 1416302 commit b555332
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/plugins/intel_npu/src/plugin/npuw/llm_compiled_model.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2023-2024 Intel Corporation
// Copyright (C) 2023-2025 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include "llm_compiled_model.hpp"
Expand Down Expand Up @@ -333,14 +333,6 @@ std::shared_ptr<ov::Model> cvt_value_tensors_layout(std::shared_ptr<ov::Model> m
return ppp.build();
}

bool optimize_value_tensors1(std::shared_ptr<ov::Model> model) {
ov::pass::GraphRewrite rewr;
rewr.add_matcher<ScaledDotProductAttentionDecomposition>();
rewr.run_on_model(model);

ov::pass::Validate().run_on_model(model);
return false;
}

bool optimize_value_tensors(std::shared_ptr<ov::Model> model) {
ov::pass::GraphRewrite rewr;
Expand Down

0 comments on commit b555332

Please sign in to comment.