Closes #18 Co-authored-by: Jules Pénuchot <jules@penuchot.com> See merge request oss/rotgen!50
48 lines
1.7 KiB
C++
48 lines
1.7 KiB
C++
//==================================================================================================
|
|
/*
|
|
ROTGEN - Runtime Overlay for Eigen
|
|
Copyright : CODE RECKONS
|
|
SPDX-License-Identifier: BSL-1.0
|
|
*/
|
|
//==================================================================================================
|
|
#include <rotgen/rotgen.hpp>
|
|
|
|
#include "unit/common/norms.hpp"
|
|
#include "unit/common/references.hpp"
|
|
#include "unit/tests.hpp"
|
|
|
|
TTS_CASE_TPL("Test dynamic map norm operations", rotgen::tests::types)
|
|
|
|
<typename T, typename O>(tts::type<tts::types<T, O>>)
|
|
{
|
|
auto const cases = rotgen::tests::generate_matrix_references();
|
|
for (auto const& [rows, cols, fn] : cases)
|
|
{
|
|
rotgen::matrix<T, rotgen::Dynamic, rotgen::Dynamic, O::value> base(rows,
|
|
cols);
|
|
rotgen::tests::prepare(rows, cols, fn, base);
|
|
|
|
rotgen::map<rotgen::matrix<T, rotgen::Dynamic, rotgen::Dynamic, O::value>>
|
|
input(base.data(), rows, cols);
|
|
rotgen::tests::check_norms_functions(input);
|
|
}
|
|
};
|
|
|
|
TTS_CASE_TPL("Test static map norm operations", rotgen::tests::types)
|
|
|
|
<typename T, typename O>(tts::type<tts::types<T, O>>)
|
|
{
|
|
auto const cases = rotgen::tests::generate_static_matrix_references();
|
|
|
|
auto process = []<typename D>(D const& desc) {
|
|
rotgen::matrix<T, rotgen::Dynamic, rotgen::Dynamic, O::value> base(D::rows,
|
|
D::cols);
|
|
rotgen::tests::prepare(rows(base), cols(base), desc.init_fn, base);
|
|
|
|
rotgen::map<rotgen::matrix<T, D::rows, D::cols, O::value>> input(
|
|
base.data());
|
|
rotgen::tests::check_norms_functions(input);
|
|
};
|
|
|
|
std::apply([&](auto const&... d) { (process(d), ...); }, cases);
|
|
};
|