eqcctpro 0.4.1__tar.gz → 0.4.3__tar.gz
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.
- {eqcctpro-0.4.1 → eqcctpro-0.4.3}/PKG-INFO +38 -9
- {eqcctpro-0.4.1 → eqcctpro-0.4.3}/README.md +37 -8
- {eqcctpro-0.4.1 → eqcctpro-0.4.3}/eqcctpro.egg-info/PKG-INFO +38 -9
- {eqcctpro-0.4.1 → eqcctpro-0.4.3}/setup.py +18 -1
- {eqcctpro-0.4.1 → eqcctpro-0.4.3}/eqcctpro/__init__.py +0 -0
- {eqcctpro-0.4.1 → eqcctpro-0.4.3}/eqcctpro.egg-info/SOURCES.txt +0 -0
- {eqcctpro-0.4.1 → eqcctpro-0.4.3}/eqcctpro.egg-info/dependency_links.txt +0 -0
- {eqcctpro-0.4.1 → eqcctpro-0.4.3}/eqcctpro.egg-info/requires.txt +0 -0
- {eqcctpro-0.4.1 → eqcctpro-0.4.3}/eqcctpro.egg-info/top_level.txt +0 -0
- {eqcctpro-0.4.1 → eqcctpro-0.4.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: eqcctpro
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Description-Content-Type: text/markdown
|
|
5
5
|
Requires-Dist: numpy==1.26.4
|
|
6
6
|
Requires-Dist: pandas==2.2.3
|
|
@@ -39,27 +39,56 @@ 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 (experts)
|
|
44
|
+
2. Install **EQCCTPro** with the sample waveform data as provided from the Github folder (first-time users)
|
|
43
45
|
|
|
46
|
+
It is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data and code to help you get acquainted with **EQCCTPro** and its capabilites.
|
|
47
|
+
|
|
48
|
+
However, if you wish to install **only the EQCCTPro Python package and use it out of the box** (method 1), run:
|
|
44
49
|
```sh
|
|
45
|
-
|
|
46
|
-
|
|
50
|
+
**`pip install eqcctpro`**
|
|
51
|
+
```
|
|
52
|
+
**You must have at least Python verison 3.10.14 for the application to run**.
|
|
53
|
+
|
|
54
|
+
You can install Python 3.10.14 using either traditional methods or do the following commands:
|
|
55
|
+
```sh
|
|
56
|
+
[skevofilaxc] conda create --name yourenvironemntname python=3.10.14 -y
|
|
57
|
+
[skevofilaxc] conda activate yourenvironemntname
|
|
58
|
+
[skevofilaxc] python3 --version
|
|
59
|
+
Python 3.10.14 (it should return)
|
|
60
|
+
[skevofilaxc] pip install eqcctpro
|
|
61
|
+
```
|
|
62
|
+
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 to help you get acquainted with **EQCCTPro's** functionality.
|
|
63
|
+
You can pull the `EQCCTPro` folder by running the following commands:
|
|
64
|
+
|
|
65
|
+
```sh
|
|
66
|
+
[skevofilaxc] mkdir my_work_directory
|
|
67
|
+
[skevofilaxc] cd my_work_directory
|
|
68
|
+
[skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
|
|
69
|
+
[skevofilaxc] cd eqcct
|
|
70
|
+
[skevofilaxc] git sparse-checkout set eqcctpro
|
|
47
71
|
```
|
|
48
72
|
|
|
49
|
-
|
|
73
|
+
If you wish to install **EQCCTPro** with the sample waveform data as **originally intended for first-time users**, 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
|
|
74
|
+
and dependencies needed for **EQCCTPro** to run (method 2).
|
|
50
75
|
|
|
76
|
+
You can pull the `EQCCTPro` folder, create the precreated conda environment, and activate it as originally intended for first-time users using the following commands:
|
|
51
77
|
```sh
|
|
52
78
|
[skevofilaxc] mkdir my_work_directory
|
|
53
79
|
[skevofilaxc] cd my_work_directory
|
|
54
80
|
[skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
|
|
55
81
|
[skevofilaxc] cd eqcct
|
|
56
82
|
[skevofilaxc] git sparse-checkout set eqcctpro
|
|
83
|
+
[skevofilaxc] conda env create -f environment.yml
|
|
84
|
+
[skevofilaxc] conda activate eqcctpro
|
|
57
85
|
```
|
|
58
|
-
|
|
86
|
+
|
|
87
|
+
After creating and activating the conda environment, install the **EQCCTPro Python package** using the following command:
|
|
59
88
|
```sh
|
|
60
89
|
[skevofilaxc] pip install eqcctpro
|
|
61
90
|
```
|
|
62
|
-
More information on the package can be found at our PyPi project link [
|
|
91
|
+
The pip package will install the remaining packages needed for **EQCCTPro** to work. More information on the eqcctpro pip package can be found at our PyPi project link here [(EQCCTPro)](https://pypi.org/project/eqcctpro/).
|
|
63
92
|
|
|
64
93
|
## Creating a Test Workspace Environment
|
|
65
94
|
It's highly suggested to create a workspace environment to first understand how eqcctpro works.
|
|
@@ -299,7 +328,7 @@ Both **OptimalCPUConfigurationFinder** and **OptimalGPUConfigurationFinder** eac
|
|
|
299
328
|
|
|
300
329
|
1. **`find_best_overall_usecase`**
|
|
301
330
|
- Returns the best overall usecase configuration
|
|
302
|
-
- Uses
|
|
331
|
+
- Uses middle 50% of CPUs for moderate, balanced CPU usage, with the maximum amount of stations processed with the minimum runtime
|
|
303
332
|
2. **`find_optimal_for`**
|
|
304
333
|
- 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
334
|
- 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 +365,5 @@ The `environment.yml` file specifies the dependencies required to run EQCCTPro.
|
|
|
336
365
|
EQCCTPro is provided under an open-source license. See LICENSE for details.
|
|
337
366
|
|
|
338
367
|
## Contact
|
|
339
|
-
For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu.
|
|
368
|
+
For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu or victor.salles@beg.utexas.edu.
|
|
340
369
|
|
|
@@ -10,27 +10,56 @@ EQCCTPro is a high-performace seismic event detection and processing framework t
|
|
|
10
10
|
- Efficient handling of large-scale seismic data
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
13
|
-
To install
|
|
13
|
+
To install `EQCCTPro`, there are two installation approaches:
|
|
14
|
+
1. Install **EQCCTPro** out the box with no sample waveform data to test the application with (experts)
|
|
15
|
+
2. Install **EQCCTPro** with the sample waveform data as provided from the Github folder (first-time users)
|
|
14
16
|
|
|
17
|
+
It is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data and code to help you get acquainted with **EQCCTPro** and its capabilites.
|
|
18
|
+
|
|
19
|
+
However, if you wish to install **only the EQCCTPro Python package and use it out of the box** (method 1), run:
|
|
15
20
|
```sh
|
|
16
|
-
|
|
17
|
-
|
|
21
|
+
**`pip install eqcctpro`**
|
|
22
|
+
```
|
|
23
|
+
**You must have at least Python verison 3.10.14 for the application to run**.
|
|
24
|
+
|
|
25
|
+
You can install Python 3.10.14 using either traditional methods or do the following commands:
|
|
26
|
+
```sh
|
|
27
|
+
[skevofilaxc] conda create --name yourenvironemntname python=3.10.14 -y
|
|
28
|
+
[skevofilaxc] conda activate yourenvironemntname
|
|
29
|
+
[skevofilaxc] python3 --version
|
|
30
|
+
Python 3.10.14 (it should return)
|
|
31
|
+
[skevofilaxc] pip install eqcctpro
|
|
32
|
+
```
|
|
33
|
+
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 to help you get acquainted with **EQCCTPro's** functionality.
|
|
34
|
+
You can pull the `EQCCTPro` folder by running the following commands:
|
|
35
|
+
|
|
36
|
+
```sh
|
|
37
|
+
[skevofilaxc] mkdir my_work_directory
|
|
38
|
+
[skevofilaxc] cd my_work_directory
|
|
39
|
+
[skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
|
|
40
|
+
[skevofilaxc] cd eqcct
|
|
41
|
+
[skevofilaxc] git sparse-checkout set eqcctpro
|
|
18
42
|
```
|
|
19
43
|
|
|
20
|
-
|
|
44
|
+
If you wish to install **EQCCTPro** with the sample waveform data as **originally intended for first-time users**, 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
|
|
45
|
+
and dependencies needed for **EQCCTPro** to run (method 2).
|
|
21
46
|
|
|
47
|
+
You can pull the `EQCCTPro` folder, create the precreated conda environment, and activate it as originally intended for first-time users using the following commands:
|
|
22
48
|
```sh
|
|
23
49
|
[skevofilaxc] mkdir my_work_directory
|
|
24
50
|
[skevofilaxc] cd my_work_directory
|
|
25
51
|
[skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
|
|
26
52
|
[skevofilaxc] cd eqcct
|
|
27
53
|
[skevofilaxc] git sparse-checkout set eqcctpro
|
|
54
|
+
[skevofilaxc] conda env create -f environment.yml
|
|
55
|
+
[skevofilaxc] conda activate eqcctpro
|
|
28
56
|
```
|
|
29
|
-
|
|
57
|
+
|
|
58
|
+
After creating and activating the conda environment, install the **EQCCTPro Python package** using the following command:
|
|
30
59
|
```sh
|
|
31
60
|
[skevofilaxc] pip install eqcctpro
|
|
32
61
|
```
|
|
33
|
-
More information on the package can be found at our PyPi project link [
|
|
62
|
+
The pip package will install the remaining packages needed for **EQCCTPro** to work. More information on the eqcctpro pip package can be found at our PyPi project link here [(EQCCTPro)](https://pypi.org/project/eqcctpro/).
|
|
34
63
|
|
|
35
64
|
## Creating a Test Workspace Environment
|
|
36
65
|
It's highly suggested to create a workspace environment to first understand how eqcctpro works.
|
|
@@ -270,7 +299,7 @@ Both **OptimalCPUConfigurationFinder** and **OptimalGPUConfigurationFinder** eac
|
|
|
270
299
|
|
|
271
300
|
1. **`find_best_overall_usecase`**
|
|
272
301
|
- Returns the best overall usecase configuration
|
|
273
|
-
- Uses
|
|
302
|
+
- Uses middle 50% of CPUs for moderate, balanced CPU usage, with the maximum amount of stations processed with the minimum runtime
|
|
274
303
|
2. **`find_optimal_for`**
|
|
275
304
|
- Return the paralleliztion configurations (EX. concurrent predictions, intra/inter thread counts, vram, etc.) for a given number of CPU(s)/GPU(s) and stations
|
|
276
305
|
- 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
|
|
@@ -307,5 +336,5 @@ The `environment.yml` file specifies the dependencies required to run EQCCTPro.
|
|
|
307
336
|
EQCCTPro is provided under an open-source license. See LICENSE for details.
|
|
308
337
|
|
|
309
338
|
## Contact
|
|
310
|
-
For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu.
|
|
339
|
+
For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu or victor.salles@beg.utexas.edu.
|
|
311
340
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: eqcctpro
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Description-Content-Type: text/markdown
|
|
5
5
|
Requires-Dist: numpy==1.26.4
|
|
6
6
|
Requires-Dist: pandas==2.2.3
|
|
@@ -39,27 +39,56 @@ 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 (experts)
|
|
44
|
+
2. Install **EQCCTPro** with the sample waveform data as provided from the Github folder (first-time users)
|
|
43
45
|
|
|
46
|
+
It is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data and code to help you get acquainted with **EQCCTPro** and its capabilites.
|
|
47
|
+
|
|
48
|
+
However, if you wish to install **only the EQCCTPro Python package and use it out of the box** (method 1), run:
|
|
44
49
|
```sh
|
|
45
|
-
|
|
46
|
-
|
|
50
|
+
**`pip install eqcctpro`**
|
|
51
|
+
```
|
|
52
|
+
**You must have at least Python verison 3.10.14 for the application to run**.
|
|
53
|
+
|
|
54
|
+
You can install Python 3.10.14 using either traditional methods or do the following commands:
|
|
55
|
+
```sh
|
|
56
|
+
[skevofilaxc] conda create --name yourenvironemntname python=3.10.14 -y
|
|
57
|
+
[skevofilaxc] conda activate yourenvironemntname
|
|
58
|
+
[skevofilaxc] python3 --version
|
|
59
|
+
Python 3.10.14 (it should return)
|
|
60
|
+
[skevofilaxc] pip install eqcctpro
|
|
61
|
+
```
|
|
62
|
+
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 to help you get acquainted with **EQCCTPro's** functionality.
|
|
63
|
+
You can pull the `EQCCTPro` folder by running the following commands:
|
|
64
|
+
|
|
65
|
+
```sh
|
|
66
|
+
[skevofilaxc] mkdir my_work_directory
|
|
67
|
+
[skevofilaxc] cd my_work_directory
|
|
68
|
+
[skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
|
|
69
|
+
[skevofilaxc] cd eqcct
|
|
70
|
+
[skevofilaxc] git sparse-checkout set eqcctpro
|
|
47
71
|
```
|
|
48
72
|
|
|
49
|
-
|
|
73
|
+
If you wish to install **EQCCTPro** with the sample waveform data as **originally intended for first-time users**, 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
|
|
74
|
+
and dependencies needed for **EQCCTPro** to run (method 2).
|
|
50
75
|
|
|
76
|
+
You can pull the `EQCCTPro` folder, create the precreated conda environment, and activate it as originally intended for first-time users using the following commands:
|
|
51
77
|
```sh
|
|
52
78
|
[skevofilaxc] mkdir my_work_directory
|
|
53
79
|
[skevofilaxc] cd my_work_directory
|
|
54
80
|
[skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
|
|
55
81
|
[skevofilaxc] cd eqcct
|
|
56
82
|
[skevofilaxc] git sparse-checkout set eqcctpro
|
|
83
|
+
[skevofilaxc] conda env create -f environment.yml
|
|
84
|
+
[skevofilaxc] conda activate eqcctpro
|
|
57
85
|
```
|
|
58
|
-
|
|
86
|
+
|
|
87
|
+
After creating and activating the conda environment, install the **EQCCTPro Python package** using the following command:
|
|
59
88
|
```sh
|
|
60
89
|
[skevofilaxc] pip install eqcctpro
|
|
61
90
|
```
|
|
62
|
-
More information on the package can be found at our PyPi project link [
|
|
91
|
+
The pip package will install the remaining packages needed for **EQCCTPro** to work. More information on the eqcctpro pip package can be found at our PyPi project link here [(EQCCTPro)](https://pypi.org/project/eqcctpro/).
|
|
63
92
|
|
|
64
93
|
## Creating a Test Workspace Environment
|
|
65
94
|
It's highly suggested to create a workspace environment to first understand how eqcctpro works.
|
|
@@ -299,7 +328,7 @@ Both **OptimalCPUConfigurationFinder** and **OptimalGPUConfigurationFinder** eac
|
|
|
299
328
|
|
|
300
329
|
1. **`find_best_overall_usecase`**
|
|
301
330
|
- Returns the best overall usecase configuration
|
|
302
|
-
- Uses
|
|
331
|
+
- Uses middle 50% of CPUs for moderate, balanced CPU usage, with the maximum amount of stations processed with the minimum runtime
|
|
303
332
|
2. **`find_optimal_for`**
|
|
304
333
|
- 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
334
|
- 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 +365,5 @@ The `environment.yml` file specifies the dependencies required to run EQCCTPro.
|
|
|
336
365
|
EQCCTPro is provided under an open-source license. See LICENSE for details.
|
|
337
366
|
|
|
338
367
|
## Contact
|
|
339
|
-
For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu.
|
|
368
|
+
For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu or victor.salles@beg.utexas.edu.
|
|
340
369
|
|
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
from setuptools import setup, find_packages
|
|
2
2
|
import os
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
# Ensure the user has the latest Python version
|
|
6
|
+
REQUIRED_PYTHON = (3, 10, 14) # Change this to the minimum version you require
|
|
7
|
+
|
|
8
|
+
if sys.version_info < REQUIRED_PYTHON:
|
|
9
|
+
sys.stderr.write(f"""
|
|
10
|
+
==========================
|
|
11
|
+
Unsupported Python version
|
|
12
|
+
==========================
|
|
13
|
+
This package requires Python {REQUIRED_PYTHON[0]}.{REQUIRED_PYTHON[1]}.{REQUIRED_PYTHON[2]} or higher.
|
|
14
|
+
You are using Python {sys.version_info.major}.{sys.version_info.minor}.
|
|
15
|
+
Please upgrade Python and try again.
|
|
16
|
+
|
|
17
|
+
Visit https://www.python.org/downloads/ to install the latest version.
|
|
18
|
+
""")
|
|
19
|
+
sys.exit(1)
|
|
3
20
|
|
|
4
21
|
# Ensure TensorFlow and CUDA are initialized before running
|
|
5
22
|
os.environ["TF_CPP_MIN_LOG_LEVEL"] = "3"
|
|
@@ -13,7 +30,7 @@ with open("README.md", "r") as f:
|
|
|
13
30
|
|
|
14
31
|
setup(
|
|
15
32
|
name="eqcctpro",
|
|
16
|
-
version="0.4.
|
|
33
|
+
version="0.4.3",
|
|
17
34
|
packages=find_packages(),
|
|
18
35
|
install_requires=[
|
|
19
36
|
"numpy==1.26.4",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|