You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of the latest update of this document, the above modules correspond to the following versions on the TigerGPU system, given by `module list`:
35
+
As of the latest update of this document (Summer 2021), the above modules correspond to the following versions on the TigerGPU system, given by `module list`:
Especially note the presence of the CUDA directory in this path. This indicates that the loaded OpenMPI library is [CUDA-aware](https://www.open-mpi.org/faq/?category=runcuda).
74
+
75
+
In both cases, especially note the presence of the CUDA directory in this path. This indicates that the loaded OpenMPI library is [CUDA-aware](https://www.open-mpi.org/faq/?category=runcuda).
61
76
62
77
If you `conda activate` the Anaconda environment **after** loading the OpenMPI library, your application would be built with the MPI library from Anaconda, which has worse performance on this cluster and could lead to errors. See [mpi4py on HPC Clusters](https://researchcomputing.princeton.edu/support/knowledge-base/mpi4py) for a related discussion.
All the configuration parameters are summarised in `examples/conf.yaml`. In this section, we highlight the important ones used to control the input data.
79
94
80
95
Currently, FRNN is capable of working with JET and D3D data as well as thecross-machine regime. The switch is done in the configuration file:
96
+
```yaml
97
+
paths:
98
+
...
99
+
data: 'jet_0D'
100
+
```
81
101
102
+
Older yaml files kept for archival purposes will denote this data set as follow:
82
103
```yaml
83
104
paths:
84
105
...
@@ -107,7 +128,7 @@ This will preprocess the data and save rescaled copies of the signals in `/tigre
107
128
Preprocessing must be performed only once per each dataset. For example, consider the following dataset specified in the config file `examples/conf.yaml`:
108
129
```yaml
109
130
paths:
110
-
data: jet_data_0D
131
+
data: jet_0D
111
132
```
112
133
Preprocessing this dataset takes about 20 minutes to preprocess in parallel and can normally be done on the cluster headnode.
0 commit comments