We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a99ff5 commit 7685e96Copy full SHA for 7685e96
lib/Dialect/TritonGPU/Transforms/Pipeliner/PipelineExpander.cpp
@@ -259,7 +259,8 @@ bool LoopPipelinerInternal::verifySchedule() {
259
int64_t producerCycle = it->second;
260
if (consumerCycle < producerCycle - numCylesPerIter * distance) {
261
InFlightDiagnostic diag =
262
- consumer->emitError("operation scheduled before its operands");
+ consumer->emitWarning("operation scheduled before its operands. "
263
+ "Pipelining will be disabled.");
264
diag.attachNote(producer->getLoc())
265
.append("operand defined here: ")
266
.appendOp(*producer, OpPrintingFlags().printGenericOpForm());
0 commit comments