Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/include/mlir/Dialect/Linalg/IR/LinalgNamedStructuredOps.yaml | ||
---|---|---|
1220–1222 | Let's add layout information to the doc, like what we've done for conv_2d_nhwc_hwcf. Performs 1-D convolution. Layout: * Input: NCW. * Kernel: FCW. Numeric casting is performed on the operands to the inner multiply, promoting them to the same data type as the accumulator/output. |
mlir/include/mlir/Dialect/Linalg/IR/LinalgNamedStructuredOps.yaml | ||
---|---|---|
1220–1222 | thanks, done :) |
Comment Actions
Sorry for some reason my previous comment was not posted..
mlir/python/mlir/dialects/linalg/opdsl/ops/core_named_ops.py | ||
---|---|---|
288 | Can we order the domains according to the order they are used in the compute expression? That's the convention we follow for other named ops. Specifically, D.n, D.f, D.ow, D.c, D.kw. |
mlir/python/mlir/dialects/linalg/opdsl/ops/core_named_ops.py | ||
---|---|---|
288 | done, thanks for the input! |
Let's add layout information to the doc, like what we've done for conv_2d_nhwc_hwcf.