fastlisaresponse 1.0.8__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.

Files changed (28) hide show
  1. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/PKG-INFO +3 -3
  2. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/README.md +2 -2
  3. fastlisaresponse-1.0.9/fastlisaresponse/_version.py +1 -0
  4. fastlisaresponse-1.0.9/fastlisaresponse/cutils/src/LISAResponse.cu +919 -0
  5. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9/fastlisaresponse/cutils}/src/responselisa_cpu.cpp +1800 -1182
  6. fastlisaresponse-1.0.9/fastlisaresponse/cutils/src/responselisa_cpu.pyx +65 -0
  7. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/fastlisaresponse/response.py +4 -4
  8. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/fastlisaresponse.egg-info/PKG-INFO +3 -3
  9. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/fastlisaresponse.egg-info/SOURCES.txt +9 -7
  10. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/pyproject.toml +1 -1
  11. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/scripts/prebuild.py +2 -2
  12. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/setup.py +28 -10
  13. fastlisaresponse-1.0.8/fastlisaresponse/_version.py +0 -1
  14. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/MANIFEST.in +0 -0
  15. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/fastlisaresponse/__init__.py +0 -0
  16. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/fastlisaresponse/cutils/__init__.py +0 -0
  17. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9/fastlisaresponse/cutils}/include/LISAResponse.hh +0 -0
  18. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9/fastlisaresponse/cutils}/include/cuda_complex.hpp +0 -0
  19. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9/fastlisaresponse/cutils}/src/LISAResponse.cpp +0 -0
  20. /fastlisaresponse-1.0.8/src/responselisa_cpu.pyx → /fastlisaresponse-1.0.9/fastlisaresponse/cutils/src/responselisa.pyx +0 -0
  21. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/fastlisaresponse/pointer_adjust.py +0 -0
  22. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/fastlisaresponse/utils/__init__.py +0 -0
  23. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/fastlisaresponse/utils/utility.py +0 -0
  24. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/fastlisaresponse.egg-info/dependency_links.txt +0 -0
  25. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/fastlisaresponse.egg-info/not-zip-safe +0 -0
  26. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/fastlisaresponse.egg-info/top_level.txt +0 -0
  27. {fastlisaresponse-1.0.8 → fastlisaresponse-1.0.9}/requirements.txt +0 -0
  28. {fastlisaresponse-1.0.8 → 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.8
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
@@ -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.7) `fastlisaresponse` requires the newest version of [LISA Analysis Tools](github.com/mikekatz04/LISAanalysistools). You can run `pip install lisaanalysistools`.
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.7
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.7) `fastlisaresponse` requires the newest version of [LISA Analysis Tools](github.com/mikekatz04/LISAanalysistools). You can run `pip install lisaanalysistools`.
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.7
92
+ Current Version: 1.0.9
93
93
 
94
94
  ## Authors
95
95
 
@@ -0,0 +1 @@
1
+ __version__ = "1.0.9"