Skip to content

Commit 6f3ec49

Browse files
committed
chore: fix typo
1 parent 1c11c36 commit 6f3ec49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/partitioning/partitioning.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ void setExplicitFallbackNodes(PartitioningCtx* ctx, torch::jit::Block* block) {
7474
continue;
7575
}
7676

77-
if (n->kind() == torch::jit::prim::Loop && checkLoopEvaluatable) {
77+
if (n->kind() == torch::jit::prim::Loop && checkLoopEvaluatable(n)) {
7878
ctx->setNodeExecutorDecision(n, NodeExecutorDecision::kCONVERT);
7979
} else if (!conversion::OpSupported(n)) {
8080
// If the op is not supported by the conversion phase it should run in PyTorch

0 commit comments

Comments
 (0)