Definition at line 367 of file mainPrecomputeKernelMatrix.cpp. References Impala::Util::PropertySet::Add(), Impala::Util::Database::GetIOBuffer(), ILOG_VAR, and Impala::Util::PropertySet::Print(). Referenced by mainPrecomputeKernelMatrix(), and makeTestMatrix(). 00369 { 00370 if(Link::Mpi::MyId() != 0) 00371 return; 00372 ILOG_VAR(Application.mainPrecomputeKernelMatrix.CheckQuids); 00373 00374 Util::IOBuffer* buf = db->GetIOBuffer(filepathname, false, false, "tmp"); 00375 Util::PropertySet ps; 00376 ps.Add("totalrows", rows); 00377 ps.Add("totalcolumns", columns); 00378 ps.Add("rowparts", partcount); 00379 ps.Add("columnparts", partcount); 00380 ps.Print(buf); 00381 delete buf; 00382 }
Here is the call graph for this function:
|