Skip to content
Snippets Groups Projects

Gpu block size

Merged Markus Holzer requested to merge holzer/pystencils:GPUBlockSize into master
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
import pystencils as ps
def test_version_string():
version = ps.__version__
print(version)
numeric_version = [int(x, 10) for x in version.split('.')[0:2]]
numeric_version = [int(x, 10) for x in version.split('.')[0:1]]
test_version = sum(x * (100 ** i) for i, x in enumerate(numeric_version))
assert test_version >= 200
\ No newline at end of file
assert test_version >= 1
Loading