File: wgridder_double.cpp

package info (click to toggle)
wsclean 3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,968 kB
  • sloc: cpp: 85,742; python: 3,526; sh: 245; makefile: 21
file content (15 lines) | stat: -rw-r--r-- 672 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "wgridder_implementation.h"

template class wsclean::WGridder<double>;

template <typename NumT>
template <typename Tms>
void wsclean::WGridder<NumT>::AddInversionMs(size_t n_rows, const double *uvw,
                                             const ducc0::cmav<double, 1> &freq,
                                             Tms &ms) {
  AddInversionMsImplementation(n_rows, uvw, freq, ms);
}
template void wsclean::WGridder<double>::AddInversionMs<
    wsclean::VisibilityCallbackBuffer<std::complex<float>> const>(
    size_t n_rows, const double *uvw, const ducc0::cmav<double, 1> &freq,
    wsclean::VisibilityCallbackBuffer<std::complex<float>> const &ms);