[Mlir-commits] [mlir] [mlir][Vector] Move vector.extract canonicalizers for DenseElementsAttr to folders (PR #127995)
Jakub Kuderski
llvmlistbot at llvm.org
Tue Feb 25 07:52:19 PST 2025
================
@@ -2033,20 +2033,71 @@ static Value extractInsertFoldConstantOp(OpType op, AdaptorType adaptor,
static Attribute foldPoisonIndexInsertExtractOp(MLIRContext *context,
ArrayRef<int64_t> staticPos,
int64_t poisonVal) {
- if (!llvm::is_contained(staticPos, poisonVal))
+ if (!is_contained(staticPos, poisonVal))
----------------
kuhar wrote:
nit: I'd undo this so that we don't depend on [ADL](https://en.cppreference.com/w/cpp/language/adl).
Unlike the cast functions and container types like SmallVector/StringRef/ArrayRef/etc, we don't have a using declaration in the mlir namespace for functions from STLExtras.h.
https://github.com/llvm/llvm-project/pull/127995
More information about the Mlir-commits
mailing list