Decompose conv_2d_nchw_fchw -> conv_1d_ncw_fcw
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/lib/Dialect/Linalg/Transforms/Transforms.cpp | ||
---|---|---|
852–865 | Let's use TypeSwitch in this case. That makes it more readable. TypeSwitch<Operation *, LogicalResult>(op) .Case<linalg::Conv2DNhwcHwcfOp> ... |
Let's use TypeSwitch in this case. That makes it more readable.