[OPTIMIZER] Added DotOp
to the list of expensive ops we don't want to rematerialize. (#718)
This commit is contained in:
@@ -120,8 +120,8 @@ public:
|
|||||||
|
|
||||||
auto blacklist = [](Operation *op) {
|
auto blacklist = [](Operation *op) {
|
||||||
if (isa<triton::gpu::ExtractSliceOp, triton::gpu::AllocTensorOp,
|
if (isa<triton::gpu::ExtractSliceOp, triton::gpu::AllocTensorOp,
|
||||||
triton::gpu::InsertSliceAsyncOp, triton::LoadOp, triton::StoreOp>(
|
triton::gpu::InsertSliceAsyncOp, triton::LoadOp, triton::StoreOp,
|
||||||
op))
|
triton::DotOp>(op))
|
||||||
return true;
|
return true;
|
||||||
if (isa<scf::YieldOp, scf::ForOp>(op))
|
if (isa<scf::YieldOp, scf::ForOp>(op))
|
||||||
return true;
|
return true;
|
||||||
|
Reference in New Issue
Block a user