Lines Matching defs:resVals
160 SmallVectorImpl<Value> &resVals,
169 loc, resVals[w], res, /*offsets=*/ArrayRef<int64_t>{w}, strides);
177 loc, resVals[w], res, /*offsets=*/ArrayRef<int64_t>{0, w, 0},
3269 SmallVector<Value> lhsVals, rhsVals, resVals;
3276 resVals = extractConvResultSlices(rewriter, loc, res, nSize, wSize, fSize,
3291 resVals[w] = conv1dSliceAsOuterProduct(rewriter, loc,
3293 rhsVals[kw], resVals[w]);
3295 resVals[w] = conv1dSliceAsContraction(rewriter, loc,
3297 rhsVals[kw], resVals[w]);
3301 resVals[w] = pool1dSlice(rewriter, loc, lhsVals[linearIndex(kw, w)],
3302 resVals[w]);
3308 res = insertConvResultSlices(rewriter, loc, res, wSize, wSizeStep, resVals,
3507 SmallVector<Value> lhsVals, rhsVals, resVals;
3529 resVals.push_back(rewriter.create<vector::ExtractStridedSliceOp>(
3551 Value resVal = resVals[w];
3558 loc, resTypeAfterFlattening, resVals[w]);
3560 resVals[w] = depthwiseConv1dSliceAsMulAcc(rewriter, loc, lhsVal,
3564 resVals[w] = rewriter.create<vector::ShapeCastOp>(
3565 loc, VectorType::get(inOutSliceSizes, resEltType), resVals[w]);
3571 if (!llvm::all_of(resVals, [](Value v) { return v; })) {
3574 {resVals, rhsVals, lhsVals, {res, rhs, lhs, zero}})
3584 loc, resVals[w], maybeMaskedRes->getResult(0),