You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using an O(n2 log n) instead of O(n2) precomputation, the colatitudinal DCTs and DSTs can be applied to the Legendre to Chebyshev connection coefficients to reduce the overall spherical harmonic synthesis and analysis to execute_sph_hi2lo followed by a sequence of cblas_dgemm and one longitudinal FFTW_HC2R.
Contrast this with the current four-step approach of execute_sph_hi2lo followed by a sequence of cblas_dtrmm and a sequence of FFTW_REDFT01 and FFTW_RODFT01, and finally the longitudinal FFTW_HC2R.
The text was updated successfully, but these errors were encountered:
Using an O(n2 log n) instead of O(n2) precomputation, the colatitudinal DCTs and DSTs can be applied to the Legendre to Chebyshev connection coefficients to reduce the overall spherical harmonic synthesis and analysis to
execute_sph_hi2lo
followed by a sequence ofcblas_dgemm
and one longitudinalFFTW_HC2R
.Contrast this with the current four-step approach of
execute_sph_hi2lo
followed by a sequence ofcblas_dtrmm
and a sequence ofFFTW_REDFT01
andFFTW_RODFT01
, and finally the longitudinalFFTW_HC2R
.The text was updated successfully, but these errors were encountered: