[Torch Dialect] typo fix for RefineTypes (#2087)

pull/2064/head snapshot-20230506.830
Yuanqiang Liu 2023-05-06 06:22:14 +08:00 committed by GitHub
parent fc62b8e9ab
commit 9f1ed4b2ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -859,7 +859,7 @@ void TypeAnalysis::visitOperation(Operation *op,
result2Knowledge.dtype = self.dtype;
incorporateKnowledge(op->getResult(0), result0Knowledge);
incorporateKnowledge(op->getResult(1), result1Knowledge);
incorporateKnowledge(op->getResult(2), result1Knowledge);
incorporateKnowledge(op->getResult(2), result2Knowledge);
return;
}