Skip to content

Commit

Permalink
Increase ARPACK problem size.
Browse files Browse the repository at this point in the history
  • Loading branch information
insertinterestingnamehere committed May 7, 2021
1 parent 83d2b7c commit 5458990
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion benchmarks/arpack/arpack_mpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import time

OMP_NUM_THREADS = sys.argv[1]
n = 10000
n = 40000
nruns = 11

from mpi4py import MPI
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/arpack/arpack_parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

OMP_NUM_THREADS = sys.argv[2]
nworkers = int(sys.argv[1])
n = 10000
n = 40000
nruns = 11

os.environ['OMP_NUM_THREADS'] = OMP_NUM_THREADS
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/arpack/arpack_reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

OMP_NUM_THREADS = sys.argv[2]
nworkers = int(sys.argv[1])
n = 10000
n = 40000
nruns = 11

import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/arpack/arpack_reference_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

OMP_NUM_THREADS = sys.argv[2]
nworkers = int(sys.argv[1])
n = 10000
n = 40000
nruns = 11

import numpy as np
Expand Down

0 comments on commit 5458990

Please sign in to comment.