-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
90 additions
and
344 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from graphTools import * | ||
from expTools import * | ||
import os | ||
|
||
# Dictionnaire avec les options de compilations d'apres commande | ||
options = {} | ||
options["-k "] = ["life"] | ||
options["-i "] = [500] | ||
options["-v "] = ["omp_tiled"] | ||
options["-s "] = [2176] | ||
options["-ts "] = [8, 16, 32] | ||
options["-a "] = ["octa_off"] | ||
options["-of "] = ["./plots/data/life_seq.csv"] | ||
|
||
# Dictionnaire avec les options OMP | ||
ompenv = {} | ||
ompenv["OMP_NUM_THREADS="] = [4] | ||
# ompenv["OMP_PLACES="] = ["cores", "threads"] | ||
|
||
nbrun = 4 | ||
|
||
# Lancement des experiences | ||
# execute('./run ', ompenv, options, nbrun, verbose=False, easyPath=".") | ||
|
||
# Lancement de la version ocl | ||
options["-v "] = ["ocl"] | ||
options["-o "] = [""] | ||
ompenv = {} | ||
|
||
# execute('./run', ompenv, options, nbrun, verbose=False, easyPath=".") | ||
|
||
# Lancement de la version seq avec le nombre de thread impose a 1 | ||
options["-v "] = ["tiled"] | ||
del options["-ts "] | ||
del options["-o "] | ||
ompenv["OMP_NUM_THREADS="] = [1] | ||
|
||
execute('./run', ompenv, options, nbrun, verbose=False, easyPath=".") | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.