[Mlir-commits] [mlir] [mlir][linalg] unfold projected permutation. (PR #114704)
Diego Caballero
llvmlistbot at llvm.org
Wed Nov 6 15:59:15 PST 2024
================
@@ -0,0 +1,243 @@
+//===- UnfoldProjectedPermutation.cpp - extract projected projections ---===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+//
+#include "mlir/Dialect/Linalg/Transforms/Transforms.h"
+#include <utility>
+
+#include "mlir/Dialect/Affine/IR/AffineOps.h"
+#include "mlir/Dialect/Linalg/IR/Linalg.h"
+#include <map>
+#include <optional>
+#include <vector>
----------------
dcaballe wrote:
Is vector needed?
You should also move `<utility>` to this section. I think if you remove the blank line (11) , clang-format would sort the includes in the right order for you :)
https://github.com/llvm/llvm-project/pull/114704
More information about the Mlir-commits
mailing list