Search found 6 matches
- Wed Feb 12, 2014 11:41 am
- Forum: OpenMM
- Topic: Static build of OpenMM?
- Replies: 1
- Views: 759
Re: Static build of OpenMM?
Well, you're in luck. OpenMM 6.0 RC has a static builds of OpenMM, OpenMMCUDA, OpenMMOpenCL, OpenMMCPU platforms, in addition to the PME Plugin. We hoped this would cover most use cases. Set the cmake OPENMM_BUILD_STATIC_LIB option to true, which will the generate *_static libraries. Note that to us...
- Tue Dec 31, 2013 10:35 am
- Forum: OpenMM
- Topic: OpenMM and MPI
- Replies: 6
- Views: 1264
Re: OpenMM and MPI
Hi Stephan,
OpenMM does not parallelize across multiple nodes in a cluster environment. It's designed for single node use with powerful GPUs and CPUs.
OpenMM does not parallelize across multiple nodes in a cluster environment. It's designed for single node use with powerful GPUs and CPUs.
- Tue Dec 03, 2013 9:22 am
- Forum: OpenMM
- Topic: Determination of potential energies after simulation
- Replies: 2
- Views: 586
Re: Determination of potential energies after simulation
Hi,
You can use force groups to separate each force into a different group. When you call getState later on, you can query by the forceGroup. Take a look at the API in the docs, and if you have trouble understanding it let us know
You can use force groups to separate each force into a different group. When you call getState later on, you can query by the forceGroup. Take a look at the API in the docs, and if you have trouble understanding it let us know
- Sun Nov 17, 2013 6:29 pm
- Forum: OpenMM
- Topic: Use OpenMM to calculate neighbors list?
- Replies: 13
- Views: 2039
Re: Use OpenMM to calculate neighbors list?
Unfortunately this information isn't exposed directly. In fact, we don't even build a canonical neighborlist on the GPU. We find neighbors for a block of atoms instead of a single atom. The relevant code are located here: https://github.com/SimTk/openmm/blob/master/platforms/cuda/src/kernels/findInt...
- Mon Jun 03, 2013 11:14 am
- Forum: OpenMM
- Topic: Source repository moved to GitHub
- Replies: 3
- Views: 1307
Re: Source repository moved to GitHub
Hi Peter and Mark, When I moved the svn repo into github, to avoid transferring literally everything in the root of /svn/openmm, I instead copied over /svn/openmm/trunk/ - which contained all of the pertinent information in that folder. The tags folder IIRC was in /svn/openmm/tags which wasn't copie...
- Wed Apr 10, 2013 10:03 am
- Forum: OpenMM
- Topic: Restarting simulations
- Replies: 6
- Views: 1575
Re: Restarting simulations
Hi Carl, Context class's createCheckpoint creates a checkpoint that is only loadable on the exact computer used to create the checkpoint. It basically writes out to a binary stream (or string in case of python) containing various internal states of the system. ie. it tries to maintain the same GPU s...