Lines Matching defs:biasVal
80 Value biasVal = args[0];
82 if (resType != biasVal.getType()) {
83 biasVal = builder.create<arith::ExtSIOp>(loc, resType, biasVal);
85 Value added = builder.create<arith::AddIOp>(loc, biasVal, args[1]);
139 Value biasVal = args[0];
141 if (resType != biasVal.getType()) {
142 biasVal = builder.create<arith::ExtSIOp>(loc, resType, biasVal);
144 builder.create<linalg::YieldOp>(loc, biasVal);