Skip to content
Snippets Groups Projects
Select Git revision
  • 3d4e0591a149c304d4c7d7ea57a989a2098bd87e
  • master default protected
  • experimental_rel protected
  • lab-jupyterlab4 protected
  • fix_bazel_for_spinnaker
  • add-nestml-tests
  • feat-add_graphviz_wf
  • snudda_2.2.2
  • ebrains-25-02 protected
  • ebrains-24-04 protected
  • feat_add_py-jaxley
  • feat_JUSUF_image protected
  • fix-k8s-job-cache-dir
  • test_open3d
  • add-music
  • add_gcc-spinnaker
  • disable-view
  • test_quiggeldy_service
  • image_build
  • update-readme
  • create-module-file
  • v24.04
  • v25.02
  • v23.09
  • v23.06
  • v23.02
  • v22.10
  • v22.07
28 results

llvm11-0005-libclang-WIP-Fix-get_tokens-in-macro-expansion.patch

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