fastlisaresponse 1.0.2__tar.gz → 1.0.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 fastlisaresponse might be problematic. Click here for more details.

Files changed (29) hide show
  1. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/PKG-INFO +2 -2
  2. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/README.md +1 -1
  3. fastlisaresponse-1.0.3/fastlisaresponse/_version.py +1 -0
  4. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/fastlisaresponse/response.py +0 -4
  5. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/fastlisaresponse.egg-info/PKG-INFO +2 -2
  6. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/scripts/prebuild.py +3 -3
  7. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/setup.py +2 -2
  8. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/src/Detector.cpp +2 -2
  9. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/src/pycppdetector.cpp +123 -123
  10. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/src/responselisa_cpu.cpp +123 -123
  11. fastlisaresponse-1.0.2/fastlisaresponse/_version.py +0 -1
  12. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/MANIFEST.in +0 -0
  13. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/fastlisaresponse/__init__.py +0 -0
  14. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/fastlisaresponse/cutils/__init__.py +0 -0
  15. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/fastlisaresponse/pointer_adjust.py +0 -0
  16. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/fastlisaresponse/utils/__init__.py +0 -0
  17. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/fastlisaresponse/utils/utility.py +0 -0
  18. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/fastlisaresponse.egg-info/SOURCES.txt +0 -0
  19. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/fastlisaresponse.egg-info/dependency_links.txt +0 -0
  20. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/fastlisaresponse.egg-info/not-zip-safe +0 -0
  21. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/fastlisaresponse.egg-info/top_level.txt +0 -0
  22. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/include/Detector.hpp +0 -0
  23. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/include/LISAResponse.hh +0 -0
  24. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/include/cuda_complex.hpp +0 -0
  25. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/pyproject.toml +0 -0
  26. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/setup.cfg +0 -0
  27. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/src/LISAResponse.cpp +0 -0
  28. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/src/pycppdetector.pyx +0 -0
  29. {fastlisaresponse-1.0.2 → fastlisaresponse-1.0.3}/src/responselisa_cpu.pyx +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fastlisaresponse
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Home-page: https://github.com/mikekatz04/lisa-on-gpu
5
5
  Author: Michael Katz
6
6
  Author-email: mikekatz04@gmail.com
@@ -114,7 +114,7 @@ Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduc
114
114
 
115
115
  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).
116
116
 
117
- Current Version: 1.0.2
117
+ Current Version: 1.0.3
118
118
 
119
119
  ## Authors
120
120
 
@@ -98,7 +98,7 @@ Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduc
98
98
 
99
99
  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).
100
100
 
101
- Current Version: 1.0.2
101
+ Current Version: 1.0.3
102
102
 
103
103
  ## Authors
104
104
 
@@ -0,0 +1 @@
1
+ __version__ = '1.0.3'
@@ -18,7 +18,6 @@ except (ImportError, ModuleNotFoundError) as e:
18
18
 
19
19
  gpu = False
20
20
 
21
- from .cutils.detector import pycppdetector as pycppdetector_here
22
21
  from pyresponse_cpu import get_response_wrap as get_response_wrap_cpu
23
22
  from pyresponse_cpu import get_tdi_delays_wrap as get_tdi_delays_wrap_cpu
24
23
  import time
@@ -216,8 +215,6 @@ class pyResponseTDI(object):
216
215
 
217
216
  assert isinstance(orbits, Orbits)
218
217
 
219
- orbits.pycppdetector_base = pycppdetector_here
220
-
221
218
  self._response_orbits = deepcopy(orbits)
222
219
 
223
220
  if not self._response_orbits.configured:
@@ -237,7 +234,6 @@ class pyResponseTDI(object):
237
234
 
238
235
  assert isinstance(orbits, Orbits)
239
236
 
240
- orbits.pycppdetector_base = pycppdetector_here
241
237
  self._tdi_orbits = deepcopy(orbits)
242
238
 
243
239
  if not self._tdi_orbits.configured:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fastlisaresponse
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Home-page: https://github.com/mikekatz04/lisa-on-gpu
5
5
  Author: Michael Katz
6
6
  Author-email: mikekatz04@gmail.com
@@ -114,7 +114,7 @@ Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduc
114
114
 
115
115
  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).
116
116
 
117
- Current Version: 1.0.2
117
+ Current Version: 1.0.3
118
118
 
119
119
  ## Authors
120
120
 
@@ -24,21 +24,21 @@ with open("fastlisaresponse/_version.py", "w") as f:
24
24
  import requests
25
25
 
26
26
  r = requests.get(
27
- "https://raw.githubusercontent.com/mikekatz04/LISAanalysistools/dev2/src/Detector.cpp"
27
+ "https://raw.githubusercontent.com/mikekatz04/LISAanalysistools/main/src/Detector.cpp"
28
28
  )
29
29
 
30
30
  with open("src/Detector.cpp", "wb") as f:
31
31
  f.write(r.content)
32
32
 
33
33
  r = requests.get(
34
- "https://raw.githubusercontent.com/mikekatz04/LISAanalysistools/dev2/include/Detector.hpp"
34
+ "https://raw.githubusercontent.com/mikekatz04/LISAanalysistools/main/include/Detector.hpp"
35
35
  )
36
36
 
37
37
  with open("include/Detector.hpp", "wb") as f:
38
38
  f.write(r.content)
39
39
 
40
40
  r = requests.get(
41
- "https://raw.githubusercontent.com/mikekatz04/LISAanalysistools/dev2/src/pycppdetector.pyx"
41
+ "https://raw.githubusercontent.com/mikekatz04/LISAanalysistools/main/src/pycppdetector.pyx"
42
42
  )
43
43
 
44
44
  with open("src/pycppdetector.pyx", "wb") as f:
@@ -225,13 +225,13 @@ setup(
225
225
  author_email="mikekatz04@gmail.com",
226
226
  ext_modules=extensions,
227
227
  # Inject our custom trigger
228
- packages=["fastlisaresponse", "fastlisaresponse.utils", "fastlisaresponse.cutils"],
228
+ packages=["fastlisaresponse", "fastlisaresponse.utils"],
229
229
  cmdclass={"build_ext": custom_build_ext},
230
230
  # Since the package has c code, the egg cannot be zipped
231
231
  zip_safe=False,
232
232
  long_description=long_description,
233
233
  long_description_content_type="text/markdown",
234
- version="1.0.2",
234
+ version="1.0.3",
235
235
  url="https://github.com/mikekatz04/lisa-on-gpu",
236
236
  classifiers=[
237
237
  "Programming Language :: Python :: 3",
@@ -67,8 +67,8 @@ double Orbits::interpolate(double t, double *in_arr, int window, int major_ndim,
67
67
 
68
68
  // m *(x - x0) + y0
69
69
  double fin = ((up - down) / dt) * (t - (dt * window)) + down;
70
- if ((ndim == 1))
71
- printf("%d %e %e %e %e \n", window, fin, down, up, (t - (dt * window)));
70
+ // if ((ndim == 1))
71
+ // printf("%d %e %e %e %e \n", window, fin, down, up, (t - (dt * window)));
72
72
 
73
73
  return fin;
74
74
  }