Parallel
Provides methods for the ATHENA
project for running
parallelized version of software using mpi4py.
Handles parrallel operations using MPI when available
continue_run(rank, contin)
Stops run and ends MPI
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rank |
int
|
process rank in MPI |
required |
contin |
bool
|
when False stop run |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in src/athenage/genn/parallel.py
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
|
distribute_data(rank, data, train_splits, test_splits, vmap, grammar)
Broadcast data and related values to all processes from root so that all processes are using the same data and splits.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rank |
int
|
process number in MPI |
required |
data |
DataFrame
|
dataset to analyze |
required |
train_splits |
ndarray
|
contains indexes for managing training splits |
required |
test_splits |
ndarray
|
contains indexes for managing testing splits |
required |
vmap |
dict
|
dict mapping new variable name to old one |
required |
grammar |
str
|
contains grammar to use in GE |
required |
Returns:
Name | Type | Description |
---|---|---|
data |
DataFrame
|
dataset to analyze |
train_splits |
ndarray
|
contains indexes for managing training splits |
test_splits |
ndarray
|
contains indexes for managing testing splits |
vmap |
dict
|
dict mapping new variable name to old one |
grammar |
str
|
contains grammar to use in GE |
Source code in src/athenage/genn/parallel.py
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
|
distribute_params(params, rank)
Broadcast parameters to all processes in run
Parameters:
Name | Type | Description | Default |
---|---|---|---|
params |
dict
|
key is parameter and option is value |
required |
Returns:
Name | Type | Description |
---|---|---|
params |
dict
|
dict containing parameters |
Source code in src/athenage/genn/parallel.py
27 28 29 30 31 32 33 34 35 36 37 38 |
|
exchange_best(ind)
Share best individual with all other processes
Source code in src/athenage/genn/parallel.py
94 95 96 |
|
get_nprocs()
Return number of processes in the run
Source code in src/athenage/genn/parallel.py
22 23 24 |
|
get_rank()
Return rank within MPI run for this process
Source code in src/athenage/genn/parallel.py
18 19 20 |
|
get_stats(stats, population)
Generate fitness lists for this process and send to the root
Parameters:
Name | Type | Description | Default |
---|---|---|---|
stats |
Statistics
|
deap statistics object |
required |
population |
list
|
individuals in population |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
contains statistics generated from fitness scores of the populations |
Source code in src/athenage/genn/parallel.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
|
send_log_info(length, nodes, depth, used_codons, invalid, n_inds, n_unique_structs)
Gather all logging information at root process
Parameters:
Name | Type | Description | Default |
---|---|---|---|
length |
list
|
length of each individual |
required |
nodes |
list
|
number of nodes for each individual |
required |
depth |
list
|
depth of each individual in population |
required |
used_codons |
list
|
number of used codons for each individual |
required |
invalid |
int
|
number of invalid individuals in population |
required |
n_inds |
int
|
number of individuals in population |
required |
n_unique_structs |
int
|
number of unique structures created by population |
required |
Returns:
Name | Type | Description |
---|---|---|
log_data |
dict
|
dict containing compiled logging stats for all processes |
Source code in src/athenage/genn/parallel.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
|