fastlisaresponse 1.0.7__tar.gz → 1.0.9__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 fastlisaresponse might be problematic. Click here for more details.
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/PKG-INFO +4 -4
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/README.md +2 -2
- fastlisaresponse-1.0.9/fastlisaresponse/_version.py +1 -0
- fastlisaresponse-1.0.9/fastlisaresponse/cutils/src/LISAResponse.cu +919 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9/fastlisaresponse/cutils}/src/responselisa_cpu.cpp +285 -285
- fastlisaresponse-1.0.9/fastlisaresponse/cutils/src/responselisa_cpu.pyx +65 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/fastlisaresponse/response.py +4 -4
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/fastlisaresponse.egg-info/PKG-INFO +4 -4
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/fastlisaresponse.egg-info/SOURCES.txt +9 -7
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/pyproject.toml +1 -1
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/scripts/prebuild.py +2 -2
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/setup.py +29 -11
- fastlisaresponse-1.0.7/fastlisaresponse/_version.py +0 -1
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/MANIFEST.in +0 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/fastlisaresponse/__init__.py +0 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/fastlisaresponse/cutils/__init__.py +0 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9/fastlisaresponse/cutils}/include/LISAResponse.hh +0 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9/fastlisaresponse/cutils}/include/cuda_complex.hpp +0 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9/fastlisaresponse/cutils}/src/LISAResponse.cpp +0 -0
- /fastlisaresponse-1.0.7/src/responselisa_cpu.pyx → /fastlisaresponse-1.0.9/fastlisaresponse/cutils/src/responselisa.pyx +0 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/fastlisaresponse/pointer_adjust.py +0 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/fastlisaresponse/utils/__init__.py +0 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/fastlisaresponse/utils/utility.py +0 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/fastlisaresponse.egg-info/dependency_links.txt +0 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/fastlisaresponse.egg-info/not-zip-safe +0 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/fastlisaresponse.egg-info/top_level.txt +0 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/requirements.txt +0 -0
- {fastlisaresponse-1.0.7 → fastlisaresponse-1.0.9}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fastlisaresponse
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.9
|
|
4
4
|
Home-page: https://github.com/mikekatz04/lisa-on-gpu
|
|
5
5
|
Author: Michael Katz
|
|
6
6
|
Author-email: mikekatz04@gmail.com
|
|
@@ -11,7 +11,7 @@ Classifier: Natural Language :: English
|
|
|
11
11
|
Classifier: Programming Language :: C++
|
|
12
12
|
Classifier: Programming Language :: Cython
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
-
Requires-Python: >=3.
|
|
14
|
+
Requires-Python: >=3.6
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
|
|
17
17
|
# fastlisaresponse: Generic LISA response function for GPUs
|
|
@@ -40,7 +40,7 @@ See [examples notebook](https://github.com/mikekatz04/lisa-on-gpu/blob/master/ex
|
|
|
40
40
|
|
|
41
41
|
### Prerequisites
|
|
42
42
|
|
|
43
|
-
Now (version 1.0.
|
|
43
|
+
Now (version 1.0.9) `fastlisaresponse` requires the newest version of [LISA Analysis Tools](github.com/mikekatz04/LISAanalysistools). You can run `pip install lisaanalysistools`.
|
|
44
44
|
|
|
45
45
|
To install this software for CPU usage, you need Python >3.4 and NumPy. To run the examples, you will also need jupyter and matplotlib. We generally recommend installing everything, including gcc and g++ compilers, in the conda environment as is shown in the examples here. This generally helps avoid compilation and linking issues. If you use your own chosen compiler, you will need to make sure all necessary information is passed to the setup command (see below). You also may need to add information to the `setup.py` file.
|
|
46
46
|
|
|
@@ -105,7 +105,7 @@ Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduc
|
|
|
105
105
|
|
|
106
106
|
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/mikekatz04/lisa-on-gpu/tags).
|
|
107
107
|
|
|
108
|
-
Current Version: 1.0.
|
|
108
|
+
Current Version: 1.0.9
|
|
109
109
|
|
|
110
110
|
## Authors
|
|
111
111
|
|
|
@@ -24,7 +24,7 @@ See [examples notebook](https://github.com/mikekatz04/lisa-on-gpu/blob/master/ex
|
|
|
24
24
|
|
|
25
25
|
### Prerequisites
|
|
26
26
|
|
|
27
|
-
Now (version 1.0.
|
|
27
|
+
Now (version 1.0.9) `fastlisaresponse` requires the newest version of [LISA Analysis Tools](github.com/mikekatz04/LISAanalysistools). You can run `pip install lisaanalysistools`.
|
|
28
28
|
|
|
29
29
|
To install this software for CPU usage, you need Python >3.4 and NumPy. To run the examples, you will also need jupyter and matplotlib. We generally recommend installing everything, including gcc and g++ compilers, in the conda environment as is shown in the examples here. This generally helps avoid compilation and linking issues. If you use your own chosen compiler, you will need to make sure all necessary information is passed to the setup command (see below). You also may need to add information to the `setup.py` file.
|
|
30
30
|
|
|
@@ -89,7 +89,7 @@ Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduc
|
|
|
89
89
|
|
|
90
90
|
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/mikekatz04/lisa-on-gpu/tags).
|
|
91
91
|
|
|
92
|
-
Current Version: 1.0.
|
|
92
|
+
Current Version: 1.0.9
|
|
93
93
|
|
|
94
94
|
## Authors
|
|
95
95
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.0.9"
|