Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Pencilcaseman committed Sep 14, 2020
1 parent 1daf246 commit b3e5187
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
Binary file added dist/libpymath-0.1.8.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion libpymath.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: libpymath
Version: 0.1.7
Version: 0.1.8
Summary: A general purpose Python math module
Home-page: https://www.github.com/pencilcaseman/gpc
Author: Toby Davis
Expand Down
2 changes: 2 additions & 0 deletions libpymath/matrix/_threadSetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ def _lpmFindOptimalMatrixThreads(n = 1000, verbose=False):

LPM_OPTIMAL_MATRIX_THREADS = _lpmFindOptimalMatrixThreads(n=500, verbose=True)

printf("Using {} threads for libpymath matrix math".format(LPM_OPTIMAL_MATRIX_THREADS))

with open("_threadInfo.py", "w") as out:
out.write("LPM_CORES = {}\n".format(LPM_CORES))
out.write("LPM_THREADS = {}\n".format(LPM_THREADS))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def lgompLink():

setup(
name="libpymath",
version="0.1.7",
version="0.1.8",
description="A general purpose Python math module",
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit b3e5187

Please sign in to comment.