forked from sjvrijn/ConfiguringCMAES
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.py.example
27 lines (20 loc) · 907 Bytes
/
local.py.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function, unicode_literals
'''
local.py: This file is to be used to store variables such as paths that are specific to the local machine.
NOTE: This is an example file. Please create a copy named 'local.py'
'''
__author__ = 'Sander van Rijn'
__email__ = '[email protected]'
### MPI Core-Counts ###
MPI_num_host_threads = 16 # Number of available threads per host
MPI_num_hosts = 12 # Number of available hosts
### Data Generation ###
datapath = "test_results/" # Where to store results
non_bbob_datapath = "ga_results/" # Where to store the results I personally generate
### Postprocessing ###
brute_location = '/scratch/Experiments/BF runs'
ga_location = '/scratch/Experiments/GA runs'
raw_bfname = 'data/bruteforce_{}_f{}.tdat'
raw_ganame = 'data/GA_results_{}dim_f{}.tdat'