Hi Peter,
This is 6.3. If it matters at all, I'm using python3.4 via an installation of a very recent build of miniconda3.
I'm starting to think it might be something to do with the environment on my that particular machine since I'm getting python errors on it that don't crop up on others. I was trying to run a simulation using the gromacs-equilibrated structure from:
https://simtk.org/forums/viewtopic.php?f=161&t=6005 which worked fine on the machine I'd been testing that stuff on, but the error:
Code: Select all
Traceback (most recent call last):
File "test.py", line 37, in <module>
simulation.step(totalsteps)
File "C:\Miniconda3\lib\site-packages\simtk\openmm\app\simulation.py", line 95
, in step
self._simulate(endStep=self.currentStep+steps)
File "C:\Miniconda3\lib\site-packages\simtk\openmm\app\simulation.py", line 15
2, in _simulate
self.integrator.step(stepsToGo)
File "C:\Miniconda3\lib\site-packages\simtk\openmm\openmm.py", line 11905, in
step
return _openmm.LangevinIntegrator_step(self, *args)
TypeError: in method 'LangevinIntegrator_step', argument 2 of type 'int'
Popped up while using CUDA (that particular simulation does work on CPU.
Because it seemed that some platform work while other don't, I checked all of the platform that are available on that machine with TestCheckpoint.py... but I received the same error regardless of platform:
Code: Select all
======================================================================
ERROR: test_1 (__main__.TestCheckpointReporter)
----------------------------------------------------------------------
Traceback (most recent call last):
File "TestCheckpoint.py", line 35, in test_1
self.simulation.context.loadCheckpoint(f.read())
File "C:\Miniconda3\lib\site-packages\simtk\openmm\openmm.py", line 5056, in l
oadCheckpoint
return _openmm.Context_loadCheckpoint(self, *args)
TypeError: in method 'Context_loadCheckpoint', argument 2 of type 'std::string'
----------------------------------------------------------------------
Ran 1 test in 0.108s
FAILED (errors=1)