Commit 11879a88 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Added parameter for skipping Ellpack formats in SpMV benchmark.

parent 3653d108
Loading
Loading
Loading
Loading
+95 −71

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
namespace TNL {
namespace Benchmarks {
namespace SpMV {
template void dispatchLegacy< float >( BenchmarkType&, const Containers::Vector< float, Devices::Host, int >&, const String&, bool, bool );
template void dispatchLegacy< float >( BenchmarkType&, const Containers::Vector< float, Devices::Host, int >&, const String&, const Config::ParameterContainer&, bool );
} // namespace TNL
} // namespace Benchmarks
} // namespace SpMV
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
namespace TNL {
namespace Benchmarks {
namespace SpMV {
template void dispatchLegacy< float >( BenchmarkType&, const Containers::Vector< float, Devices::Host, int >&, const String&, bool, bool );
template void dispatchLegacy< float >( BenchmarkType&, const Containers::Vector< float, Devices::Host, int >&, const String&, const Config::ParameterContainer&, bool );
} // namespace TNL
} // namespace Benchmarks
} // namespace SpMV
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
namespace TNL {
namespace Benchmarks {
namespace SpMV {
template void dispatchLegacy< double >( BenchmarkType&, const Containers::Vector< double, Devices::Host, int >&, const String&, bool, bool );
template void dispatchLegacy< double >( BenchmarkType&, const Containers::Vector< double, Devices::Host, int >&, const String&, const Config::ParameterContainer&, bool );
} // namespace TNL
} // namespace Benchmarks
} // namespace SpMV
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
namespace TNL {
namespace Benchmarks {
namespace SpMV {
template void dispatchLegacy< double >( BenchmarkType&, const Containers::Vector< double, Devices::Host, int >&, const String&, bool, bool );
template void dispatchLegacy< double >( BenchmarkType&, const Containers::Vector< double, Devices::Host, int >&, const String&, const Config::ParameterContainer&, bool );
} // namespace TNL
} // namespace Benchmarks
} // namespace SpMV
Loading