eqcctpro 0.4.8__py3-none-any.whl → 0.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of eqcctpro might be problematic. Click here for more details.
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: eqcctpro
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: EQCCTPro: A powerful seismic event detection toolkit
|
|
5
5
|
Author-email: Constantinos Skevofilax <constantinos.skevofilax@austin.utexas.edu>, Victor Salles <victor.salles@beg.utexas.edu>
|
|
6
6
|
Project-URL: Homepage, https://pypi.org/project/eqcctpro/
|
|
7
|
-
Project-URL: Repository, https://github.com/ut-beg-texnet/eqcctpro
|
|
8
|
-
Project-URL: Issues, https://github.com/ut-beg-texnet/eqcctpro/issues
|
|
7
|
+
Project-URL: Repository, https://github.com/ut-beg-texnet/eqcct/tree/main/eqcctpro
|
|
8
|
+
Project-URL: Issues, https://github.com/ut-beg-texnet/eqcct/tree/main/eqcctpro/issues
|
|
9
9
|
Project-URL: Documentation, https://github.com/ut-beg-texnet/eqcct/blob/main/eqcctpro/README.md
|
|
10
10
|
Requires-Python: >=3.10.14
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
@@ -284,24 +284,50 @@ To evaluate your system’s runtime performance capabilites for both your CPU(s)
|
|
|
284
284
|
from eqcctpro import EvaluateSystem
|
|
285
285
|
|
|
286
286
|
eval_gpu = EvaluateSystem(
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
287
|
+
mode='gpu',
|
|
288
|
+
intra_threads=1,
|
|
289
|
+
inter_threads=1,
|
|
290
|
+
input_dir='/path/to/mseed',
|
|
291
|
+
output_dir='/path/to/outputs',
|
|
292
|
+
log_filepath='/path/to/outputs/eqcctpro.log',
|
|
293
|
+
csv_dir='/path/to/csv',
|
|
294
|
+
P_threshold=0.001,
|
|
295
|
+
S_threshold=0.02,
|
|
296
|
+
p_model_filepath='/path/to/model_p.h5',
|
|
297
|
+
s_model_filepath='/path/to/model_s.h5',
|
|
298
|
+
stations2use=2,
|
|
299
|
+
cpu_id_list=[0,1],
|
|
300
|
+
set_vram_mb=24750,
|
|
301
|
+
selected_gpus=[0]
|
|
302
302
|
)
|
|
303
303
|
eval_gpu.evaluate()
|
|
304
304
|
```
|
|
305
|
+
|
|
306
|
+
```python
|
|
307
|
+
from eqcctpro import EvaluateSystem
|
|
308
|
+
|
|
309
|
+
eval_cpu = EvaluateSystem(
|
|
310
|
+
mode='cpu',
|
|
311
|
+
intra_threads=1,
|
|
312
|
+
inter_threads=1,
|
|
313
|
+
input_dir='/path/to/mseed',
|
|
314
|
+
output_dir='/path/to/outputs',
|
|
315
|
+
log_filepath='/path/to/outputs/eqcctpro.log',
|
|
316
|
+
csv_dir='/path/to/csv',
|
|
317
|
+
P_threshold=0.001,
|
|
318
|
+
S_threshold=0.02,
|
|
319
|
+
p_model_filepath='/path/to/model_p.h5',
|
|
320
|
+
s_model_filepath='/path/to/model_s.h5',
|
|
321
|
+
stations2use=12,
|
|
322
|
+
cpu_id_list=range(87,102),
|
|
323
|
+
starting_amount_of_stations=2,
|
|
324
|
+
station_list_step_size=1,
|
|
325
|
+
min_cpu_amount=15,
|
|
326
|
+
min_conc_predictions=2,
|
|
327
|
+
conc_predictions_step_size=1)
|
|
328
|
+
eval_cpu.evaluate()
|
|
329
|
+
```
|
|
330
|
+
|
|
305
331
|
**EvaluateSystem** will iterate through different combinations of CPU(s), Concurrent Predictions, and Workloads (stations), as well as GPU(s), and the amount of VRAM (MB) each Concurrent Prediction can use.
|
|
306
332
|
**EvaluateSystem** will take time, depending on the number of CPU/GPUs, the amount of VRAM available, and the total workload that needs to be tested. However, after doing the testing once for most if not all usecases,
|
|
307
333
|
the trial data will be available and can be used to identify the optimal input parallelization configurations for **EQCCTMSeedRunner** to use to get the maximum amount of processing out of your system in the shortest amonut of time.
|
|
@@ -356,6 +382,12 @@ The following input parameters need to be configurated for **EvaluateSystem** to
|
|
|
356
382
|
- Is the minimum amount of CPUs you want to start your trials with
|
|
357
383
|
- By default, trials will start iterating with 1 CPU up to the maximum allocated
|
|
358
384
|
- Can now set a value as the starting point, such as 15 CPUs up to the maximum of for instance 25
|
|
385
|
+
- **`min_conc_predictions (int)`: default = 1**
|
|
386
|
+
- Is the minimum amount of concurrent predictions you want each trial iteration to start with
|
|
387
|
+
- By default, if `min_conc_predictions` and `conc_predictions_step_size` are set to 1, a custom step size iteration will be applied to test the 50 sample waveforms. The sequence follows: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, n+5, 50].
|
|
388
|
+
- **`conc_predictions_step_size (int)`: default = 1**
|
|
389
|
+
- Is the concurrent predictions step size you want each trial iteration to iterate with with
|
|
390
|
+
- By default, if `min_conc_predictions` and `conc_predictions_step_size` are set to 1, a custom step size iteration will be applied to test the 50 sample waveforms. The sequence follows: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, n+5, 50]
|
|
359
391
|
- **`set_vram_mb (float)`**
|
|
360
392
|
- Value of the maximum amount of VRAM EQCCTPro can use
|
|
361
393
|
- Must be a real value that is based on your hardware's physical memory space, if it exceeds the space the code will break due to OutOfMemoryError
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
eqcctpro/__init__.py,sha256=JK27ZrLxVDNHsdorp7UAislI8haH23rZhnEivVM7hgA,141
|
|
2
|
+
eqcctpro-0.5.0.dist-info/METADATA,sha256=0AoLLn-1lNx2M8jThonwGVw-PvfeCuqP0Gkh2c4NRMg,24858
|
|
3
|
+
eqcctpro-0.5.0.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
4
|
+
eqcctpro-0.5.0.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
|
|
5
|
+
eqcctpro-0.5.0.dist-info/RECORD,,
|
eqcctpro-0.4.8.dist-info/RECORD
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
eqcctpro/__init__.py,sha256=JK27ZrLxVDNHsdorp7UAislI8haH23rZhnEivVM7hgA,141
|
|
2
|
-
eqcctpro-0.4.8.dist-info/METADATA,sha256=LGJ-8Ybjlqz6JK9O_2zDj0XcV3AifWl1oSlSy52y6g0,23016
|
|
3
|
-
eqcctpro-0.4.8.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
4
|
-
eqcctpro-0.4.8.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
|
|
5
|
-
eqcctpro-0.4.8.dist-info/RECORD,,
|
|
File without changes
|