Skip to content

Commit

Permalink
less output
Browse files Browse the repository at this point in the history
  • Loading branch information
fbischoff committed Dec 6, 2023
1 parent 6e32432 commit 8b692ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/madness/chem/CCStructures.cc
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ size_t CCConvolutionOperator::info() const {

SeparatedConvolution<double, 3> *
CCConvolutionOperator::init_op(const OpType& type, const Parameters& parameters) const {
bool debug=true;
bool debug=false;
bool printme=(world.rank()==0) and debug;
print("init_op: creating",type,"with thresh, lo, gamma",parameters.thresh_op,parameters.lo,parameters.gamma);
return new SeparatedConvolution<double,3>(world,OperatorInfo(parameters.gamma,parameters.lo,parameters.thresh_op,type));
Expand Down
6 changes: 3 additions & 3 deletions src/madness/chem/ccpairfunction.h
Original file line number Diff line number Diff line change
Expand Up @@ -430,10 +430,10 @@ using pureT=Function<T,6>;
std::vector<CCPairFunction> result;
for (auto& o : other) {
double cpu0=cpu_time();
std::cout << "multiply " << o.name();
// std::cout << "multiply " << o.name();
result.push_back(multiply(o,f,v1));
double cpu1=cpu_time();
std::cout << " done after " << cpu1-cpu0 << std::endl;
// std::cout << " done after " << cpu1-cpu0 << std::endl;
}
return result;
}
Expand Down Expand Up @@ -576,7 +576,7 @@ using pureT=Function<T,6>;
std::size_t bufsize=256;
char buf[bufsize];
snprintf(buf,bufsize,"result from inner %10s %10s %12.8f %4.1fs",a.name(true).c_str(),b.name().c_str(),tmp,wall1-wall0);
print(std::string(buf));
// print(std::string(buf));
wall0=wall1;
result+=tmp;
}
Expand Down

0 comments on commit 8b692ba

Please sign in to comment.