Skip to content
Snippets Groups Projects
Commit 77996292 authored by Emile Prost's avatar Emile Prost
Browse files

correction_indice

parent 27c4817a
No related branches found
No related tags found
No related merge requests found
......@@ -5,13 +5,13 @@ import os
import launcher_SUBP
import tools
throughputs = []
throughputs = [0 for i in range(4,9)]
mean_throughtputs = []
launcher_SUBP.compileSUBP(optimization="-O3", simd="avx512")
for nb_threads in range(4,9):
for nb_threads in range(0,5):
for iter in range(6):
res = subprocess.run("mpirun -np 1 -map-by ppr:1:socket -bind-to socket bin/* 512 256 512 " + str(nb_threads) + " 100 128 20 9", shell=True,
res = subprocess.run("mpirun -np 1 -map-by ppr:1:socket -bind-to socket bin/* 512 256 512 " + str(nb_threads+4) + " 100 128 20 9", shell=True,
stdout=subprocess.PIPE)
for line in str(res.stdout,'utf-8').split('\n'):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment