Lines Matching defs:transposeLHS
29 /// By default the LHS is transposed. Set `transposeLHS=false` to
33 bool transposeLHS) {
46 Value input = matmulOp.getInputs()[transposeLHS ? 0 : 1];
62 if (transposeLHS) {
86 /// transposed. Set `transposeLHS=false` to transpose RHS instead.
90 bool transposeLHS) {
96 Value input = batchMatmulOp.getInputs()[transposeLHS ? 0 : 1];
114 if (transposeLHS) {
131 TransposeMatmul(MLIRContext *ctx, bool transposeLHS)
132 : OpRewritePattern(ctx), transposeLHS(transposeLHS) {}
136 if (failed(transposeMatmul(rewriter, op, transposeLHS))) {
143 bool transposeLHS;
148 TransposeBatchMatmul(MLIRContext *ctx, bool transposeLHS)
149 : OpRewritePattern(ctx), transposeLHS(transposeLHS) {}
153 if (failed(transposeBatchMatmul(rewriter, op, transposeLHS))) {
160 bool transposeLHS;
165 bool transposeLHS) {
167 transposeLHS);