generation performance tests. wip
parent
916decaeca
commit
10cb61d6a7
@ -0,0 +1,44 @@
|
||||
[General]
|
||||
simDir=tests/performance/tmp_gen_output
|
||||
startJob=0
|
||||
[Iterables]
|
||||
p=[10,39,15]
|
||||
seeds=[5462,2]
|
||||
lc=[4]
|
||||
connectivity=[1,2,3]
|
||||
variances=[1]
|
||||
|
||||
[Generation]
|
||||
Nx = 128
|
||||
Ny = 128
|
||||
Nz = 128
|
||||
variogram_type=1
|
||||
binary = yes
|
||||
kh = 100
|
||||
kl = 0.01
|
||||
compute_lc = yes
|
||||
lcBin=yes
|
||||
genera=yes
|
||||
|
||||
|
||||
[Connectivity]
|
||||
keep_aspect= no
|
||||
block_size = 4
|
||||
indicators_MinBlockSize =4
|
||||
Max_sample_size = 12
|
||||
compGconec= 1
|
||||
conec=no
|
||||
|
||||
|
||||
[Solver]
|
||||
num_of_cores = 1
|
||||
ref = 2
|
||||
solve = no
|
||||
rtol = 1e-4
|
||||
|
||||
[K-Postprocess]
|
||||
MinBlockSize =1
|
||||
Max_sample_size = 4
|
||||
kperm=no
|
||||
postprocess=no
|
||||
SaveVfield=no
|
@ -0,0 +1,44 @@
|
||||
[General]
|
||||
simDir=tests/performance/tmp_gen_output
|
||||
startJob=0
|
||||
[Iterables]
|
||||
p=[10,39,15]
|
||||
seeds=[5462,2]
|
||||
lc=[4]
|
||||
connectivity=[1,2,3]
|
||||
variances=[1]
|
||||
|
||||
[Generation]
|
||||
Nx = 128
|
||||
Ny = 128
|
||||
Nz = 128
|
||||
variogram_type=1
|
||||
binary = yes
|
||||
kh = 100
|
||||
kl = 0.01
|
||||
compute_lc = yes
|
||||
lcBin=yes
|
||||
genera=yes
|
||||
|
||||
|
||||
[Connectivity]
|
||||
keep_aspect= no
|
||||
block_size = 4
|
||||
indicators_MinBlockSize =4
|
||||
Max_sample_size = 12
|
||||
compGconec= 1
|
||||
conec=no
|
||||
|
||||
|
||||
[Solver]
|
||||
num_of_cores = 1
|
||||
ref = 2
|
||||
solve = no
|
||||
rtol = 1e-4
|
||||
|
||||
[K-Postprocess]
|
||||
MinBlockSize =1
|
||||
Max_sample_size = 4
|
||||
kperm=no
|
||||
postprocess=no
|
||||
SaveVfield=no
|
@ -0,0 +1,44 @@
|
||||
[General]
|
||||
simDir=tests/performance/tmp_gen_output
|
||||
startJob=0
|
||||
[Iterables]
|
||||
p=[10,39,15]
|
||||
seeds=[5462,2]
|
||||
lc=[4]
|
||||
connectivity=[1,2,3]
|
||||
variances=[1]
|
||||
|
||||
[Generation]
|
||||
Nx = 64
|
||||
Ny = 64
|
||||
Nz = 64
|
||||
variogram_type=1
|
||||
binary = yes
|
||||
kh = 100
|
||||
kl = 0.01
|
||||
compute_lc = yes
|
||||
lcBin=yes
|
||||
genera=yes
|
||||
|
||||
|
||||
[Connectivity]
|
||||
keep_aspect= no
|
||||
block_size = 4
|
||||
indicators_MinBlockSize =4
|
||||
Max_sample_size = 12
|
||||
compGconec= 1
|
||||
conec=no
|
||||
|
||||
|
||||
[Solver]
|
||||
num_of_cores = 1
|
||||
ref = 2
|
||||
solve = no
|
||||
rtol = 1e-4
|
||||
|
||||
[K-Postprocess]
|
||||
MinBlockSize =1
|
||||
Max_sample_size = 4
|
||||
kperm=no
|
||||
postprocess=no
|
||||
SaveVfield=no
|
@ -0,0 +1,33 @@
|
||||
import os
|
||||
from benchmarker import Benchmarker
|
||||
|
||||
os.chdir('../..')
|
||||
|
||||
config_file_64 = os.path.abspath("./tests/performance/conf_gen_64.ini")
|
||||
|
||||
config_file_128 = os.path.abspath("./tests/performance/conf_gen_128.ini")
|
||||
|
||||
config_file_256 = os.path.abspath("./tests/performance/conf_gen_256.ini")
|
||||
|
||||
CONFIG_FILES = [config_file_64, config_file_128, config_file_256]
|
||||
|
||||
with Benchmarker() as bench:
|
||||
|
||||
for i,config_file in enumerate(CONFIG_FILES):
|
||||
size = 2**(6+i)
|
||||
|
||||
@bench(f"generation 1 core {size} tamaño")
|
||||
def _(bm):
|
||||
with bm:
|
||||
os.system("CONFIG_FILE_PATH="+ config_file + " mpirun -oversubscribe -np 1 python3 -m memory_profiler mpirunner.py")
|
||||
|
||||
## teardown
|
||||
os.system("rm -rf ./tests/performance/tmp_gen_output")
|
||||
|
||||
@bench(f"generation 8 core {size} tamaño")
|
||||
def _(bm):
|
||||
with bm:
|
||||
os.system("CONFIG_FILE_PATH="+ config_file + " mpirun -oversubscribe -np 8 python3 -m memory_profiler mpirunner.py")
|
||||
|
||||
## teardown
|
||||
os.system("rm -rf ./tests/performance/tmp_gen_output")
|
Loading…
Reference in New Issue