eqcctpro 0.4.9__py3-none-any.whl → 0.5.5__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,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: eqcctpro
3
- Version: 0.4.9
3
+ Version: 0.5.5
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/
@@ -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
- 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]
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.5.dist-info/METADATA,sha256=CbmTRodOcgY6Bkt5STREGq-7DUrYchUSb5TIfdQh4U8,24858
3
+ eqcctpro-0.5.5.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
4
+ eqcctpro-0.5.5.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
5
+ eqcctpro-0.5.5.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.2)
2
+ Generator: setuptools (80.3.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,5 +0,0 @@
1
- eqcctpro/__init__.py,sha256=JK27ZrLxVDNHsdorp7UAislI8haH23rZhnEivVM7hgA,141
2
- eqcctpro-0.4.9.dist-info/METADATA,sha256=YrcIaRiV9mKj90NzLyH1O2kSb0fp9Yq9chgmupqdmpY,23048
3
- eqcctpro-0.4.9.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
4
- eqcctpro-0.4.9.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
5
- eqcctpro-0.4.9.dist-info/RECORD,,