From 2edd72f93355883ac0c0b8402b8ca137b7d12b8c Mon Sep 17 00:00:00 2001 From: Maksim Kutakov Date: Thu, 21 Mar 2024 12:11:03 +0100 Subject: [PATCH] Fix typo --- .../cpu_opset/common/pass/stateful_sdpa_fusion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/intel_cpu/src/transformations/cpu_opset/common/pass/stateful_sdpa_fusion.cpp b/src/plugins/intel_cpu/src/transformations/cpu_opset/common/pass/stateful_sdpa_fusion.cpp index c66d500e39e28b..fc43aeaccf5fab 100644 --- a/src/plugins/intel_cpu/src/transformations/cpu_opset/common/pass/stateful_sdpa_fusion.cpp +++ b/src/plugins/intel_cpu/src/transformations/cpu_opset/common/pass/stateful_sdpa_fusion.cpp @@ -154,7 +154,7 @@ StatefulSDPAFusion::StatefulSDPAFusion() { // pass, as the existence of Assign will be checked later break; case 3: - // the fist one leads to SDPA, otherwise the matcher doesn't find the pattern + // the first one leads to SDPA, otherwise the matcher doesn't find the pattern // the second one leads to Assign, and this is checked later // the third child is allowed to be a ShapeOf op only, thus one of them must be ShapeOf if (!std::any_of(children.begin(), children.end(), [](const ov::Input& child) {