fastlisaresponse 1.0.9__cp312-cp312-macosx_11_0_arm64.whl

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.

@@ -0,0 +1 @@
1
+ from .response import pyResponseTDI, ResponseWrapper
@@ -0,0 +1 @@
1
+ __version__ = "1.0.9"
File without changes
@@ -0,0 +1,22 @@
1
+ #ifndef __LISA_RESPONSE__
2
+ #define __LISA_RESPONSE__
3
+
4
+ #include "cuda_complex.hpp"
5
+ #include "Detector.hpp"
6
+
7
+ #define C_inv 3.3356409519815204e-09
8
+ #define NUM_THREADS 256
9
+
10
+ typedef gcmplx::complex<double> cmplx;
11
+
12
+ void get_response(double *y_gw, double *t_data, double *k_in, double *u_in, double *v_in, double dt,
13
+ int num_delays,
14
+ cmplx *input_in, int num_inputs, int order,
15
+ double sampling_frequency, int buffer_integer, double *A_in, double deps, int num_A, double *E_in,
16
+ int projections_start_ind,
17
+ Orbits *orbits);
18
+
19
+ void get_tdi_delays(double *delayed_links, double *input_links, int num_inputs, int num_delays, double *t_arr, int *tdi_base_link, int *tdi_link_combinations, int *tdi_signs_in, int *channels, int num_units, int num_channels,
20
+ int order, double sampling_frequency, int buffer_integer, double *A_in, double deps, int num_A, double *E_in, int tdi_start_ind, Orbits *orbits);
21
+
22
+ #endif // __LISA_RESPONSE__