ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-2.0/src/brains/BlockSnapshotManager.cpp
(Generate patch)

Comparing trunk/OOPSE-2.0/src/brains/BlockSnapshotManager.cpp (file contents):
Revision 2038 by tim, Wed Feb 16 20:30:50 2005 UTC vs.
Revision 2042 by tim, Thu Feb 17 15:18:36 2005 UTC

# Line 56 | Line 56 | BlockSnapshotManager::BlockSnapshotManager(SimInfo* in
56      nRigidBodies_ = info->getNGlobalRigidBodies();
57  
58      double physMem = physmem_total();
59    double avalPhysMem = physmem_available();
59      double rssMem = residentMem();
60 <
61 <    std::cout << "physmem = " << physMem << "\t availablePhysMem = " << avalPhysMem << "\trssMem =  "<< rssMem<<std::endl;
60 >    double avaliablePhysMem = physMem - rssMem;
61 >    
62      int bytesPerStuntDouble = DataStorage::getBytesPerStuntDouble(storageLayout);
63  
64      int bytesPerFrame = (nRigidBodies_ + nAtoms_) * bytesPerStuntDouble;
65  
66 <    int frameCapacity = int (rssMem / bytesPerFrame);
66 >    int frameCapacity = int (avaliablePhysMem / bytesPerFrame);
67      
68      nSnapshotPerBlock_ = frameCapacity /blockCapacity_ ;
70
69      reader_ = new DumpReader(info, filename);
70      nframes_ = reader_->getNFrames();
71  
# Line 83 | Line 81 | BlockSnapshotManager::BlockSnapshotManager(SimInfo* in
81      blocks_.back().second = nframes_;
82  
83      snapshots_.insert(snapshots_.begin(), nframes_, static_cast<Snapshot*>(NULL));  
84 +
85 +    std::cout << "physmem = " << int(physMem) << "\trssMem =  "<< int(rssMem) << "\t availablePhysMem = " << int(avaliablePhysMem) <<std::endl;
86 +    std::cout << "nSnapshotPerBlock = " << nSnapshotPerBlock_ << "\t total block = " << nblocks << std::endl;
87      
88   }
89  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines