eqcctpro 0.4.1__py3-none-any.whl → 0.4.2__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
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: eqcctpro
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Description-Content-Type: text/markdown
|
|
5
5
|
Requires-Dist: numpy==1.26.4
|
|
6
6
|
Requires-Dist: pandas==2.2.3
|
|
@@ -39,14 +39,37 @@ EQCCTPro is a high-performace seismic event detection and processing framework t
|
|
|
39
39
|
- Efficient handling of large-scale seismic data
|
|
40
40
|
|
|
41
41
|
## Installation
|
|
42
|
-
To install
|
|
42
|
+
To install `EQCCTPro`, there are two installation approaches:
|
|
43
|
+
1. Install **EQCCTPro** out the box with no sample waveform data to test the application with
|
|
44
|
+
2. Install **EQCCTPro** with the sample waveform data as provided from the Github folder
|
|
45
|
+
|
|
46
|
+
It is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data to help you get acquainted with **EQCCTPro** and its capabilites.
|
|
47
|
+
|
|
48
|
+
If you wish to install **only the EQCCTPro Python package and use it out of the box (method 1)**, run **`pip install eqcctpro`**. **You must have at least Python verison 3.10.14 for the application to run**.
|
|
49
|
+
You can install Python 3.10.14 using either traditional methods or do the following commands:
|
|
43
50
|
|
|
44
51
|
```sh
|
|
45
|
-
[skevofilaxc] conda
|
|
46
|
-
[skevofilaxc] conda activate
|
|
52
|
+
[skevofilaxc] conda create --name yourname python=3.10.14 -y
|
|
53
|
+
[skevofilaxc] conda activate yourname
|
|
54
|
+
[skevofilaxc] python3 --version
|
|
55
|
+
Python 3.10.14 (it should return)
|
|
56
|
+
[skevofilaxc] pip install eqcctpro
|
|
57
|
+
```
|
|
58
|
+
You will have access to **EQCCTPro** and its capabilities, however, it is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data and to get acquainted with **EQCCTPro**.
|
|
59
|
+
You can pull the `EQCCTPro` folder by running the following commands:
|
|
60
|
+
|
|
61
|
+
```sh
|
|
62
|
+
[skevofilaxc] mkdir my_work_directory
|
|
63
|
+
[skevofilaxc] cd my_work_directory
|
|
64
|
+
[skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
|
|
65
|
+
[skevofilaxc] cd eqcct
|
|
66
|
+
[skevofilaxc] git sparse-checkout set eqcctpro
|
|
47
67
|
```
|
|
48
68
|
|
|
49
|
-
|
|
69
|
+
|
|
70
|
+
If you wish to install **EQCCTPro** with the sample waveform data as originally intended, and or are having trouble installing Python 3.10.14, there has been a precreated conda environment under the `EQCCTPro` folder that will install the necessary packages
|
|
71
|
+
and dependencies needed for **EQCCTPro** to run (method 2).
|
|
72
|
+
You can pull the `EQCCTPro` folder, create the precreated conda environment, and activate it using the following commands:
|
|
50
73
|
|
|
51
74
|
```sh
|
|
52
75
|
[skevofilaxc] mkdir my_work_directory
|
|
@@ -54,12 +77,15 @@ You can get the `environment.yml` file from the `eqcct` repository. You can down
|
|
|
54
77
|
[skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
|
|
55
78
|
[skevofilaxc] cd eqcct
|
|
56
79
|
[skevofilaxc] git sparse-checkout set eqcctpro
|
|
80
|
+
[skevofilaxc] conda env create -f environment.yml
|
|
81
|
+
[skevofilaxc] conda activate eqcctpro
|
|
57
82
|
```
|
|
58
|
-
|
|
83
|
+
|
|
84
|
+
After creating and activating the conda environment, install the **EQCCTPro Python package** using the following command:
|
|
59
85
|
```sh
|
|
60
86
|
[skevofilaxc] pip install eqcctpro
|
|
61
87
|
```
|
|
62
|
-
More information on the package can be found at our PyPi project link [
|
|
88
|
+
The pip package will install the remaining packages needed for **EQCCTPro** to work. More information on the package can be found at our PyPi project link [EQCCTPro](https://pypi.org/project/eqcctpro/).
|
|
63
89
|
|
|
64
90
|
## Creating a Test Workspace Environment
|
|
65
91
|
It's highly suggested to create a workspace environment to first understand how eqcctpro works.
|
|
@@ -299,7 +325,7 @@ Both **OptimalCPUConfigurationFinder** and **OptimalGPUConfigurationFinder** eac
|
|
|
299
325
|
|
|
300
326
|
1. **`find_best_overall_usecase`**
|
|
301
327
|
- Returns the best overall usecase configuration
|
|
302
|
-
- Uses
|
|
328
|
+
- Uses middle 50% of CPUs for moderate, balanced CPU usage, with the maximum amount of stations processed with the minimum runtime
|
|
303
329
|
2. **`find_optimal_for`**
|
|
304
330
|
- Return the paralleliztion configurations (EX. concurrent predictions, intra/inter thread counts, vram, etc.) for a given number of CPU(s)/GPU(s) and stations
|
|
305
331
|
- Enables users to quickly identify which input parameters should be used for the given amount of resources and workload they have for the minimum runtime possible on their computer
|
|
@@ -336,5 +362,5 @@ The `environment.yml` file specifies the dependencies required to run EQCCTPro.
|
|
|
336
362
|
EQCCTPro is provided under an open-source license. See LICENSE for details.
|
|
337
363
|
|
|
338
364
|
## Contact
|
|
339
|
-
For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu.
|
|
365
|
+
For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu or victor.salles@beg.utexas.edu.
|
|
340
366
|
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
eqcctpro/__init__.py,sha256=JK27ZrLxVDNHsdorp7UAislI8haH23rZhnEivVM7hgA,141
|
|
2
|
+
eqcctpro-0.4.2.dist-info/METADATA,sha256=DtXDzG1Wog6NokLnxK5qoFLI91bh7bwk0entrGqxb7I,20761
|
|
3
|
+
eqcctpro-0.4.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
4
|
+
eqcctpro-0.4.2.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
|
|
5
|
+
eqcctpro-0.4.2.dist-info/RECORD,,
|
eqcctpro-0.4.1.dist-info/RECORD
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
eqcctpro/__init__.py,sha256=JK27ZrLxVDNHsdorp7UAislI8haH23rZhnEivVM7hgA,141
|
|
2
|
-
eqcctpro-0.4.1.dist-info/METADATA,sha256=k-sQCltdzJcX3TtDiPH-Fr2GEiSwPTKk6xYopcQn-_A,18996
|
|
3
|
-
eqcctpro-0.4.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
4
|
-
eqcctpro-0.4.1.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
|
|
5
|
-
eqcctpro-0.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|