aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin Howard <yzena.tech@gmail.com>2021-03-31 21:46:11 -0600
committerGavin Howard <yzena.tech@gmail.com>2021-03-31 21:46:11 -0600
commit160490c7d8c1da86c87481e7908d6a1a033c985f (patch)
tree5e6ef62a185002b919cf4a1844de8c8efb44e60a
parent40819fa16de926f67f709538ac4a6417af98f34f (diff)
downloadbc-160490c7d8c1da86c87481e7908d6a1a033c985f.tar.gz
Adjust number of cores for Karatsuba script
-rwxr-xr-xkaratsuba.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/karatsuba.py b/karatsuba.py
index cfab4c4f..0a63cd58 100755
--- a/karatsuba.py
+++ b/karatsuba.py
@@ -121,20 +121,20 @@ else:
p = run([ "make", "clean" ])
-print("Testing \"make -j12\"")
+print("Testing \"make -j16\"")
if p.returncode != 0:
print("make returned an error ({}); exiting...".format(p.returncode))
sys.exit(p.returncode)
-p = run([ "make", "-j12" ])
+p = run([ "make", "-j16" ])
if p.returncode == 0:
- makecmd = [ "make", "-j12" ]
- print("Using \"make -j12\"")
+ makecmd = [ "make", "-j16" ]
+ print("Using \"make -j16\"")
else:
makecmd = [ "make" ]
- print("Not using \"make -j12\"")
+ print("Not using \"make -j16\"")
if test_num != 0:
mx2 = test_num