mirror of
https://github.com/boostorg/ublas.git
synced 2026-02-26 05:02:16 +00:00
Many bugfixes and improvements, especially related to sparse matrices.
Thanks namely to Kresimir Fresl and Michael Stevens this time.
This commit is contained in:
@@ -541,28 +541,34 @@ void bench_2<T, N>::operator () (int runs) {
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef USE_FLOAT
|
||||
template struct bench_2<float, 3>;
|
||||
template struct bench_2<float, 10>;
|
||||
template struct bench_2<float, 30>;
|
||||
template struct bench_2<float, 100>;
|
||||
#endif
|
||||
|
||||
#ifdef USE_DOUBLE
|
||||
template struct bench_2<double, 3>;
|
||||
template struct bench_2<double, 10>;
|
||||
template struct bench_2<double, 30>;
|
||||
template struct bench_2<double, 100>;
|
||||
#endif
|
||||
|
||||
#ifdef USE_STD_COMPLEX
|
||||
|
||||
#ifdef USE_FLOAT
|
||||
template struct bench_2<std::complex<float>, 3>;
|
||||
template struct bench_2<std::complex<float>, 10>;
|
||||
template struct bench_2<std::complex<float>, 30>;
|
||||
template struct bench_2<std::complex<float>, 100>;
|
||||
#endif
|
||||
|
||||
#ifdef USE_DOUBLE
|
||||
template struct bench_2<std::complex<double>, 3>;
|
||||
template struct bench_2<std::complex<double>, 10>;
|
||||
template struct bench_2<std::complex<double>, 30>;
|
||||
template struct bench_2<std::complex<double>, 100>;
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user