Skip to content

Commit

Permalink
version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
culler committed Mar 18, 2022
1 parent 6bde4ff commit b29849c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion python_src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
except:
# The import can fail when loaded by setup.py
pass
__version__ = '1.0.0'
__version__ = '1.1.0'

def version():
return __version__
Expand Down
2 changes: 2 additions & 0 deletions python_src/benchmark.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import sys
import platform
import time
from low_index import *
Expand Down Expand Up @@ -91,6 +92,7 @@ def run(ex):
elapsed = time.time() - start
print('%d subgroups'%len(x))
print('%.3fs'%elapsed)
sys.stdout.flush()

if __name__ == '__main__':
print(cpu_info(), 'with', os.cpu_count(), 'cores')
Expand Down

0 comments on commit b29849c

Please sign in to comment.