[PATCH] D153421: [mlir][Linalg] Implement the tiling interface for softmax
Quentin Colombet via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 30 00:23:47 PDT 2023
qcolombet added inline comments.
================
Comment at: mlir/lib/Dialect/Linalg/IR/LinalgOps.cpp:53
+ int64_t dim) {
+ ShapedType type = v.getType().cast<ShapedType>();
+ if (!type.isDynamicDim(dim)) {
----------------
jpienaar wrote:
> This is the deprecated form https://mlir.llvm.org/deprecation/
Thanks I didn't know about that.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153421/new/
https://reviews.llvm.org/D153421
More information about the llvm-commits
mailing list