fastlisaresponse 1.0.10__tar.gz → 1.0.11__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.10 → fastlisaresponse-1.0.11}/PKG-INFO +3 -3
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/README.md +2 -2
- fastlisaresponse-1.0.11/fastlisaresponse/_version.py +1 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse/cutils/src/responselisa_cpu.cpp +158 -158
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse/response.py +1 -1
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse.egg-info/PKG-INFO +3 -3
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse.egg-info/SOURCES.txt +1 -1
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/pyproject.toml +1 -1
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/setup.py +1 -1
- fastlisaresponse-1.0.10/fastlisaresponse/_version.py +0 -1
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/MANIFEST.in +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse/__init__.py +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse/cutils/__init__.py +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse/cutils/include/LISAResponse.hh +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse/cutils/include/cuda_complex.hpp +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse/cutils/src/LISAResponse.cpp +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse/cutils/src/LISAResponse.cu +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse/cutils/src/responselisa.pyx +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse/cutils/src/responselisa_cpu.pyx +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse/pointer_adjust.py +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse/utils/__init__.py +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse/utils/utility.py +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse.egg-info/dependency_links.txt +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse.egg-info/not-zip-safe +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/fastlisaresponse.egg-info/top_level.txt +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/requirements.txt +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/scripts/prebuild.py +0 -0
- {fastlisaresponse-1.0.10 → fastlisaresponse-1.0.11}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: fastlisaresponse
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.11
|
|
4
4
|
Home-page: https://github.com/mikekatz04/lisa-on-gpu
|
|
5
5
|
Author: Michael Katz
|
|
6
6
|
Author-email: mikekatz04@gmail.com
|
|
@@ -47,7 +47,7 @@ See [examples notebook](https://github.com/mikekatz04/lisa-on-gpu/blob/master/ex
|
|
|
47
47
|
|
|
48
48
|
### Prerequisites
|
|
49
49
|
|
|
50
|
-
Now (version 1.0.
|
|
50
|
+
Now (version 1.0.11) `fastlisaresponse` requires the newest version of [LISA Analysis Tools](github.com/mikekatz04/LISAanalysistools). You can run `pip install lisaanalysistools`.
|
|
51
51
|
|
|
52
52
|
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.
|
|
53
53
|
|
|
@@ -112,7 +112,7 @@ Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduc
|
|
|
112
112
|
|
|
113
113
|
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).
|
|
114
114
|
|
|
115
|
-
Current Version: 1.0.
|
|
115
|
+
Current Version: 1.0.11
|
|
116
116
|
|
|
117
117
|
## Authors
|
|
118
118
|
|
|
@@ -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.11) `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.11
|
|
93
93
|
|
|
94
94
|
## Authors
|
|
95
95
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.0.11"
|