Skip to content

Commit

Permalink
init vega rfm cfg #206
Browse files Browse the repository at this point in the history
  • Loading branch information
JavierCladellas committed Dec 20, 2024
1 parent 0e37aeb commit f8af9bc
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions src/feelpp/benchmarking/reframe/config/machineConfigs/vega.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
import socket

hostname = socket.gethostname()
print("Hostname:", hostname)

site_configuration = {
'systems':[
{
'name': 'vega',
'descr': 'Vega',
'hostnames': [f'{hostname}'],
'modules_system': 'tmod4',
'partitions': [
{
'name': 'cpu',
'scheduler': 'slurm',
'launcher': 'srun',
# 'max_jobs': 8,
'access': [f"--partition=cpu"],
'environs': ['default'],
'processor': {
'num_cpus': 128
},
'devices': [
{
'type': 'cpu',
'num_devices': 960
}
],
'container_platforms':[
{
'type': 'Singularity'
}
],
'sched_options': { 'use_nodes_option': True },
}
],
'env_vars':[
["OMP_NUM_THREADS",1]
]
}
],
'environments': [
{
'name':'default',
'modules': [], #["OpenMPI/4.1.5-GCC-12.3.0"],
'target_systems':['vega:cpu']
}
]
}

0 comments on commit f8af9bc

Please sign in to comment.