1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-06 10:13:04 +00:00

Sort private members in headers

This commit is contained in:
Carles Fernandez
2020-06-26 22:07:41 +02:00
parent 06ce79490b
commit 03d350551f
36 changed files with 291 additions and 289 deletions

View File

@@ -73,11 +73,10 @@ public:
private:
arma::vec mu_est;
arma::mat Psi_est;
arma::vec mu_prior;
arma::mat Psi_prior;
int kappa_prior;
int nu_prior;
arma::mat Psi_prior;
};
#endif

View File

@@ -132,6 +132,9 @@ public:
int n_correlators);
private:
cudaStream_t stream1;
// cudaStream_t stream2;
// Allocate the device input vectors
GPU_Complex* d_sig_in;
GPU_Complex* d_nco_in;
@@ -142,16 +145,14 @@ private:
std::complex<float>* d_sig_in_cpu;
std::complex<float>* d_corr_out_cpu;
int* d_shifts_samples;
float* d_shifts_chips;
int* d_shifts_samples;
int d_code_length_chips;
int selected_gps_device;
int threadsPerBlock;
int blocksPerGrid;
cudaStream_t stream1;
// cudaStream_t stream2;
int num_gpu_devices;
int selected_device;
};