Skip to content

Commit

Permalink
Consider LINEAR as vectorizeable. (#1536)
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc authored Oct 29, 2024
1 parent 49e1eff commit 4560899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codegen/codegen_helper_visitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ CodegenInfo CodegenHelperVisitor::analyze(const ast::Program& node) {
}

void CodegenHelperVisitor::visit_linear_block(const ast::LinearBlock& /* node */) {
info.vectorize = false;
info.vectorize = true;
}

void CodegenHelperVisitor::visit_non_linear_block(const ast::NonLinearBlock& /* node */) {
Expand Down

0 comments on commit 4560899

Please sign in to comment.