Skip to content
Snippets Groups Projects
Select Git revision
  • f68b317db39f2de77337689eead194c1615b8294
  • main default protected
  • sprint-1/75-issue
  • feat/histograms
  • feat/exareme2-viz-integrations
  • docs
  • fix/datashield-token-issue
  • feat/logistic-reg-cv
  • feat/datashield-integration
  • feat/datashield-algorithms
  • feat/remove-matomo-config
  • feat/auth-refresh-token
  • feat/integration-logistic-regression
  • feat/exareme2-integration
  • feat/exareme2-t-test-paired-integration
  • feat/linear-regression-cv
  • fix/cache-reset-logout
  • feat/datashield-connector
  • feat/connector-cache
  • feat/datashield-cohorts-filter
  • feat/logger-levels
  • 1.4.1
  • 1.4.0
  • 1.4.0-rc.7
  • 1.4.0-rc.6
  • 1.4.0-beta.10
  • 1.4.0-beta.9
  • 1.4.0-beta.8
  • 1.4.0-rc.5
  • 1.4.0-rc.4
  • 1.4.0-beta.7
  • 1.4.0-beta.6
  • 1.4.0-rc.3
  • 1.4.0-rc.2
  • 1.4.0-rc.1
  • 1.4.0-beta.5
  • 1.4.0-beta.4
  • 1.4.0-beta.3
  • 1.4.0-beta.2
  • 1.4.0-beta.1
  • 1.3.1
41 results

main.ts

Blame
  • config_template.py 721 B
    # Absolute path of repository
    base_path = None
    # Place to store simulations
    data_path = None
    # Template for job scripts
    jobscript_template = '''
    # Instruction for the queuing system
    
    mpirun python {base_path}/run_simulation.py {label}'''
    
    """
    Here is an example for the Slurm queueing system:
    
    # jobscript_template = '''#!/bin/bash
    # #SBATCH --job-name MAM
    # #SBATCH -o {sim_dir}/{label}.%j.o
    # #SBATCH -e {sim_dir}/{label}.%j.e
    # #SBATCH --mem=120G
    # #SBATCH --time=06:00:00
    # #SBATCH --exclusive
    # #SBATCH --cpus-per-task={local_num_threads}
    # #SBATCH --ntasks={num_processes}
    # mpirun python {base_path}/run_simulation.py {label} {network_label}'''
    """
    
    # Command to submit jobs on the local cluster
    submit_cmd = None