Skip to content

Commit

Permalink
- removed some debug dumps in vectorization
Browse files Browse the repository at this point in the history
  • Loading branch information
vwaurich committed May 18, 2015
1 parent 0295dd0 commit 23a54a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/BackEnd/Vectorization.mo
Expand Up @@ -419,15 +419,15 @@ algorithm
equation
//get similar equations
(similarEqs,rest) = List.separate1OnTrue(classEqs,equationEqualNoCrefSubs,eq);
BackendDump.dumpEquationList(similarEqs,"similarEqs");
//BackendDump.dumpEquationList(similarEqs,"similarEqs");
range = listLength(similarEqs)-1;
//print("range: "+intString(range)+"\n");
(iterCrefs,start) = getIterCrefsFromEqs(similarEqs,arrayCrefs);
//print("iterCrfs "+stringDelimitList(List.map(iterCrefs,BackendDump.printIterCrefStr),"\n")+"\n");
loopInfo = BackendDAE.LOOP(idx,DAE.ICONST(start),DAE.ICONST(intAdd(start,range)),listReverse(iterCrefs));
//print("loopInfo "+BackendDump.printLoopInfoStr(loopInfo)+"\n");
eq = setLoopInfoInEq(loopInfo,eq);
print("eq "+BackendDump.equationString(eq)+"\n");
//print("eq "+BackendDump.equationString(eq)+"\n");
tpl = addLoopInfosForClassEqs(rest, arrayCrefs, (idx+1,eq::foldEqs));
then
tpl;
Expand Down

0 comments on commit 23a54a4

Please sign in to comment.