Skip to content
Snippets Groups Projects
Commit 16a6e80d authored by Richard Angersbach's avatar Richard Angersbach
Browse files

Add missing type fold for loop vectorizer again

parent 5ee715d0
Branches
1 merge request!438Reduction Support
Pipeline #76860 failed with stages
in 16 minutes and 54 seconds
......@@ -149,9 +149,11 @@ class LoopVectorizer:
# Declare and init vector
simd_init_local_reduction_vars += [
PsDeclaration(
PsSymbolExpr(vector_symb),
PsVecBroadcast(self._lanes, PsSymbolExpr(symb)),
self._type_fold(
PsDeclaration(
PsSymbolExpr(vector_symb),
PsVecBroadcast(self._lanes, PsSymbolExpr(symb)),
)
)
]
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment