first commit
This commit is contained in:
commit
01e7a23ae2
6 changed files with 598 additions and 0 deletions
7
parallel/overcommit.py
Normal file
7
parallel/overcommit.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
import sys
|
||||
import numpy as np
|
||||
|
||||
N = int(sys.argv[1]) if len(sys.argv) > 1 else 10000
|
||||
x = np.zeros((N, N), dtype="float64")
|
||||
|
||||
y = x @ x
|
Loading…
Add table
Add a link
Reference in a new issue