diff --git a/bd.yaml b/bd.yaml index a1c40f0..2017708 100644 --- a/bd.yaml +++ b/bd.yaml @@ -1,20 +1,23 @@ --- study: perftestakantu job: revision: str - + ntasks: int + run: - compiler_version: str + compiler_version: int + akantu_url: str job_space: ./createJobs.py run_space: - compiler: gcc-12 + compiler_version: 12 + akantu_url: "https://gitlab.com/akantu/akantu.git" config_files: - compile_revision.sh exec_file: launch.sh diff --git a/createJobs.py b/createJobs.py index 9a775f0..9529986 100644 --- a/createJobs.py +++ b/createJobs.py @@ -1,12 +1,13 @@ def createJobs(base): # create of job template object job = base.Job() # specify a range of jobs - job["revision"] = 1 + job["revision"] = ['v1.0', 'v2.2'] + job["ntasks"] = [1] # creation of the jobs on the database n_insertion = base.createParameterSpace(job) print(f"Inserted {n_insertion} new jobs") diff --git a/launch.sh b/launch.sh index 2cd9af5..5e3c6d1 100644 --- a/launch.sh +++ b/launch.sh @@ -1,8 +1,3 @@ #!/bin/bash -echo 'here is the job' -echo __BLACKDYNAMITE__revision__ -echo __BLACKDYNAMITE__revision_url__ -echo __BLACKDYNAMITE__host__ - -bash ./compile_revision.sh +bash ./compile_revision.sh __BLACKDYNAMITE__akantu_url__ . __BLACKDYNAMITE__revision__