@@ -81,6 +81,10 @@ static void lowerOpToLoops(Operation *op, ArrayRef<Value> operands,
81
81
// and the loop induction variables. This function will return the value
82
82
// to store at the current index.
83
83
Value valueToStore = processIteration (nestedBuilder, operands, ivs);
84
+ // Patch to support "toy.or" Op
85
+ if (nestedBuilder.getI64Type () == valueToStore.getType ()) {
86
+ valueToStore = nestedBuilder.create <UIToFPOp>(loc, nestedBuilder.getF64Type (), valueToStore);
87
+ }
84
88
nestedBuilder.create <AffineStoreOp>(loc, valueToStore, alloc, ivs);
85
89
});
86
90
@@ -104,7 +108,7 @@ struct BinaryOpLowering : public ConversionPattern {
104
108
auto loc = op->getLoc ();
105
109
lowerOpToLoops (
106
110
op, operands, rewriter,
107
- [loc](OpBuilder &builder, ValueRange memRefOperands,
111
+ [loc, op ](OpBuilder &builder, ValueRange memRefOperands,
108
112
ValueRange loopIvs) {
109
113
// Generate an adaptor for the remapped operands of the BinaryOp. This
110
114
// allows for using the nice named accessors that are generated by the
@@ -118,6 +122,15 @@ struct BinaryOpLowering : public ConversionPattern {
118
122
auto loadedRhs =
119
123
builder.create <AffineLoadOp>(loc, binaryAdaptor.rhs (), loopIvs);
120
124
125
+ // patch to support "toy.or" operation.
126
+ auto opname = op->getName ();
127
+ if (opname.getStringRef ().str () == " toy.or" ) {
128
+ auto castLhs = builder.create <FPToUIOp>(loc, builder.getI64Type (), loadedLhs);
129
+ auto castRhs = builder.create <FPToUIOp>(loc, builder.getI64Type (), loadedRhs);
130
+
131
+ return builder.create <LoweredBinaryOp>(loc, castLhs, castRhs);
132
+ }
133
+
121
134
// Create the binary operation performed on the loaded values.
122
135
return builder.create <LoweredBinaryOp>(loc, loadedLhs, loadedRhs);
123
136
});
@@ -126,6 +139,7 @@ struct BinaryOpLowering : public ConversionPattern {
126
139
};
127
140
using AddOpLowering = BinaryOpLowering<toy::AddOp, AddFOp>;
128
141
using MulOpLowering = BinaryOpLowering<toy::MulOp, MulFOp>;
142
+ using OrOpLowering = BinaryOpLowering<toy::OrOp, OrOp>;
129
143
130
144
// ===----------------------------------------------------------------------===//
131
145
// ToyToAffine RewritePatterns: Constant operations
@@ -297,7 +311,7 @@ void ToyToAffineLoweringPass::runOnFunction() {
297
311
// Now that the conversion target has been defined, we just need to provide
298
312
// the set of patterns that will lower the Toy operations.
299
313
RewritePatternSet patterns (&getContext ());
300
- patterns.add <AddOpLowering, ConstantOpLowering, MulOpLowering,
314
+ patterns.add <AddOpLowering, ConstantOpLowering, MulOpLowering, OrOpLowering,
301
315
ReturnOpLowering, TransposeOpLowering>(&getContext ());
302
316
303
317
// With the target and rewrite patterns defined, we can now attempt the
0 commit comments