You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to qwalk-developers
When running the timing benchmarks on jaguar-pf using 64K x 8 walkers
I run into the problem
of reading in the configurations before DMC run.
The problem is here:
is >> dum; //the {
//prop.read(is);
is >> dum >> weight;
is >> dum >> sign;
//ignoring the past stuff for the moment..
}
The is.tellg(); fails for files >2Gbs and does not read in all the
walkers. Volunteers welcome to fix this.
I had the same problem in gamessci2qmc and using getline fixed it.
Michal
Lucas Wagner
unread,
Jun 27, 2011, 4:18:44 PM6/27/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to qwalk-de...@googlegroups.com
Michal,
If you change int filepos=is.tellg() ; to long int filepos=is.tellg(); does it work properly?