Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit 938a480

Browse files
Merge pull request #239 from facebookresearch/pr/fix-219
clean up #219
2 parents 2931669 + 07ae617 commit 938a480

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/core/polyhedral/codegen_llvm.cc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -481,9 +481,7 @@ class LLVMCodegen {
481481
llvm::BasicBlock::Create(llvmCtx, "loop_latch", function);
482482
auto* loopExitBB = llvm::BasicBlock::Create(llvmCtx, "loop_exit", function);
483483

484-
// TODO: integrate query ISL as to whether the relevant loop ought be
485-
// parallelized
486-
bool parallel = isl_ast_node_for_is_coincident(node.get());
484+
bool parallel = node.is_coincident();
487485
llvm::Value* SyncRegion = nullptr;
488486

489487
#ifdef TAPIR_VERSION_MAJOR

0 commit comments

Comments
 (0)