There was a bug in generate_model() in test_gpu.py, which was throwing an error during the instancing of the GeometryStatistics object because the features were not specified. This change in the default features for GeometryStatistics was changed recently with the merging of SchNet utilities to the master branch, but we likely never encountered this bug because it requires a local GPU. Hence, it was encountered when I ran nosetests -v on a GPU-armed machined. I set all backbone feature kwargs to True and now the all tests (including the GPU ones) run fine. Let me know if you see anything else that needs to be changed.
Development:
[ ] Add tests
Checks:
nosetests
There was a bug in
generate_model()
intest_gpu.py
, which was throwing an error during the instancing of theGeometryStatistics
object because the features were not specified. This change in the default features forGeometryStatistics
was changed recently with the merging of SchNet utilities to the master branch, but we likely never encountered this bug because it requires a local GPU. Hence, it was encountered when I rannosetests -v
on a GPU-armed machined. I set all backbone feature kwargs toTrue
and now the all tests (including the GPU ones) run fine. Let me know if you see anything else that needs to be changed.