-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed Load+Broadcast and added FuseLoadStoreConvert support
- Loading branch information
1 parent
4ad4e9f
commit af406c8
Showing
13 changed files
with
249 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/common/snippets/src/pass/lowered/linear_IR_transformation.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Copyright (C) 2023 Intel Corporation | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
|
||
#include "snippets/pass/lowered/linear_IR_transformation.hpp" | ||
#include "snippets/snippets_isa.hpp" | ||
#include "snippets/itt.hpp" | ||
|
||
|
||
namespace ngraph { | ||
namespace snippets { | ||
namespace pass { | ||
namespace lowered { | ||
|
||
void LinearIRTransformationPipeline::register_transformation(const std::shared_ptr<pass::lowered::LinearIRTransformation>& transformation) { | ||
m_transformations.push_back(transformation); | ||
} | ||
|
||
void LinearIRTransformationPipeline::run(LoweredExprIR& linear_ir) { | ||
for (const auto& transformation : m_transformations) { | ||
transformation->run(linear_ir); | ||
} | ||
} | ||
|
||
} // namespace lowered | ||
} // namespace pass | ||
} // namespace snippets | ||
} // namespace ngraph |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
117 changes: 0 additions & 117 deletions
117
src/plugins/intel_cpu/src/snippets_transformations/fuse_load_store_and_convert.cpp
This file was deleted.
Oops, something went wrong.
40 changes: 0 additions & 40 deletions
40
src/plugins/intel_cpu/src/snippets_transformations/fuse_load_store_and_convert.hpp
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.