Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Log the number of Streams since it might be different than the number of Threads #16372

Merged
merged 3 commits into from Oct 29, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions FWCore/Framework/src/EventProcessor.cc
Expand Up @@ -434,6 +434,8 @@ namespace edm {
nStreams = nThreads;
}
}
// PG: Log the number of streams
edm::LogInfo("StreamSetup") <<"setting # streams "<<nStreams;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Only print number of streams if the option was explicitly set. That would be moving this to be between line 435 and 436.

/*
bool nRunsSet = false;
*/
Expand Down