remove debugging output

This commit is contained in:
Joachim Schoeberl 2011-08-08 19:48:12 +00:00
parent b90dbcfbe5
commit 8a450b506b
3 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,8 @@ public:
static void StartTimer (int nr) static void StartTimer (int nr)
{ {
starttimes[nr] = clock(); counts[nr]++; starttimes[nr] = clock(); counts[nr]++;
VT_USER_START (const_cast<char*> (names[nr].c_str())); // VT_USER_START (const_cast<char*> (names[nr].c_str()));
VT_USER_START ( (char * const) (names[nr].c_str()));
} }
static void StopTimer (int nr) static void StopTimer (int nr)
{ {

View File

@ -75,7 +75,7 @@
MPI_Query_thread(&provided); MPI_Query_thread(&provided);
if (provided < 3) if (provided < 3)
if (netgen::ntasks > 1) parthread = false; if (netgen::ntasks > 1) parthread = false;
cout << "runparallel = " << parthread << endl; // cout << "runparallel = " << parthread << endl;
#endif #endif
if (parthread) if (parthread)

View File

@ -447,7 +447,6 @@ namespace netgen
#ifdef PARALLEL #ifdef PARALLEL
if (id > 0) if (id > 0)
{ {
cout << "id = " << id << ", get edge coeffs" << endl;
Array<int> master_edgeorder; Array<int> master_edgeorder;
Array<int> master_edgecoeffsindex; Array<int> master_edgecoeffsindex;
Array<Vec<3> > master_edgecoeffs; Array<Vec<3> > master_edgecoeffs;