Skip to content

Commit

Permalink
Merge pull request #4906 from VinInn/NoTBBByDefault
Browse files Browse the repository at this point in the history
Revert tbb by default
  • Loading branch information
ktf committed Aug 8, 2014
2 parents 59acde3 + 0c5f558 commit 0265afc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion RecoTracker/CkfPattern/src/CkfTrackCandidateMakerBase.cc
Expand Up @@ -42,7 +42,9 @@
#include<functional>

#include <thread>
#ifdef VI_TBB
#include "tbb/parallel_for.h"
#endif

#include "RecoTracker/CkfPattern/interface/PrintoutHelper.h"

Expand Down Expand Up @@ -299,7 +301,7 @@ namespace cms{
// end of loop over seeds


#ifndef VI_NOTBB
#ifdef VI_TBB
tbb::parallel_for(0UL,collseed_size,1UL,theLoop);
#else
#ifdef VI_OMP
Expand Down

0 comments on commit 0265afc

Please sign in to comment.