Skip to content

Commit df9a32d

Browse files
Simd optimizations: partial SIMD loops for element-wise ops (#2908)
Signed-off-by: Alexandre Eichenberger <[email protected]>
1 parent 338141f commit df9a32d

24 files changed

+2002
-1545
lines changed

src/Compiler/CompilerUtils.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,8 @@ void showCompilePhase(std::string msg) {
182182

183183
llvm::outs() << "[" << CURRENT_COMPILE_PHASE++ << "/" << TOTAL_COMPILE_PHASE
184184
<< "] " << currentTime << " " << msg << "\n";
185+
// Flush so that if there are errors, we know where it came from.
186+
llvm::outs().flush();
185187

186188
// Reset current phase.
187189
if (CURRENT_COMPILE_PHASE > TOTAL_COMPILE_PHASE)

0 commit comments

Comments
 (0)