12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- // (c) Daniel Llorens - 2017
- // This library is free software; you can redistribute it and/or modify it under
- // the terms of the GNU Lesser General Public License as published by the Free
- // Software Foundation; either version 3 of the License, or (at your option) any
- // later version.
- /// @file test-reshape.C
- /// @brief Tests for reshape().
- #include "ra/operators.H"
- #include "ra/io.H"
- #include "ra/test.H"
- #include "ra/mpdebug.H"
- #include <memory>
- using std::cout; using std::endl;
- namespace ra {
- std::ostream & operator<<(std::ostream & o, ra::Dim const d)
- {
- o << "{" << d.size << ", " << d.stride << "}";
- return o;
- }
- } // namespace ra
- int main()
- {
- TestRecorder tr(std::cout);
- tr.section("reshape");
- {
- ra::Big<int, 3> aa({2, 3, 3}, ra::_0*3+ra::_1);
- auto a = aa(ra::all, ra::all, 0);
- tr.info("ravel_free").test_eq(ra::iota(6), ravel_free(a));
- tr.test_eq(ra::scalar(a.p), ra::scalar(ravel_free(a).p));
- // select.
- tr.info("reshape select").test_eq(ra::Big<int, 1> {0, 1, 2}, reshape(a, ra::Small<int, 1> {3}));
- tr.test_eq(ra::scalar(a.p), ra::scalar(reshape(a, ra::Small<int, 1> {3}).p));
- // tile.
- tr.info("reshape select").test_eq(ra::Big<int, 3>({2, 2, 3}, {0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5}), reshape(a, ra::Small<int, 3> {2, 2, 3}));
- tr.test_eq(ra::scalar(a.p), ra::scalar(reshape(a, ra::Small<int, 3> {2, 2, 3}).p));
- // reshape with free ravel
- tr.info("reshape w/free ravel I").test_eq(ra::Big<int, 2>({3, 2}, {0, 1, 2, 3, 4, 5}), reshape(a, ra::Small<int, 2> {3, 2}));
- tr.test_eq(ra::scalar(a.p), ra::scalar(reshape(a, ra::Small<int, 2> {3, 2}).p));
- tr.info("reshape w/free ravel II").test_eq(ra::Big<int, 3>({2, 1, 2}, {0, 1, 2, 3}), reshape(a, ra::Small<int, 3> {2, 1, 2}));
- tr.test_eq(ra::scalar(a.p), ra::scalar(reshape(a, ra::Small<int, 3> {2, 1, 2}).p));
- tr.info("reshape w/free ravel III").test_eq(ra::Big<int, 2>({3, 2}, {0, 1, 2, 3, 4, 5}), reshape(a, ra::Small<int, 2> {-1, 2}));
- tr.test_eq(ra::scalar(a.p), ra::scalar(reshape(a, ra::Small<int, 2> {-1, 2}).p));
- tr.info("reshape w/free ravel IV").test_eq(ra::Big<int, 2>({2, 3}, {0, 1, 2, 3, 4, 5}), reshape(a, ra::Small<int, 2> {2, -1}));
- tr.test_eq(ra::scalar(a.p), ra::scalar(reshape(a, ra::Small<int, 2> {2, -1}).p));
- tr.info("reshape w/free ravel V").test_eq(ra::Big<int, 3>({2, 1, 3}, {0, 1, 2, 3, 4, 5}), reshape(a, ra::Small<int, 3> {2, -1, 3}));
- tr.test_eq(ra::scalar(a.p), ra::scalar(reshape(a, ra::Small<int, 3> {2, -1, 3}).p));
- }
- tr.section("reshape from var rank to fixed rank");
- {
- ra::Big<int> a({2, 3}, ra::_0*3+ra::_1);
- auto b = reshape(a, ra::Small<int, 1> {3});
- tr.info("reshape select").test_eq(ra::Big<int, 1> {0, 1, 2}, b);
- tr.test_eq(ra::scalar(a.p), ra::scalar(b.p));
- tr.info("reshape can fix rank").test_eq(1, ra::ra_traits<decltype(b)>::rank_s());
- }
- tr.section("reshape from var rank to var rank");
- {
- ra::Big<int> a({2, 3}, ra::_0*3+ra::_1);
- auto b = reshape(a, ra::Big<int, 1> {3});
- tr.info("reshape select").test_eq(ra::Big<int, 1> {0, 1, 2}, b);
- tr.test_eq(ra::scalar(a.p), ra::scalar(b.p));
- tr.info("reshape can return var rank").test_eq(ra::RANK_ANY, ra::ra_traits<decltype(b)>::rank_s());
- }
- tr.section("reshape to fixed rank to var rank");
- {
- // FIXME warning w/ gcc 6.3 in bootstrap.H inside() [ra32]. Apparent root is in decl of b in reshape().
- ra::Big<int, 2> a({2, 3}, ra::_0*3+ra::_1);
- auto b = reshape(a, ra::Big<int, 1> {3});
- tr.info("reshape select").test_eq(ra::Big<int, 1> {0, 1, 2}, b);
- tr.test_eq(ra::scalar(a.p), ra::scalar(b.p));
- tr.info("reshape can return var rank").test_eq(ra::RANK_ANY, ra::ra_traits<decltype(b)>::rank_s());
- }
- tr.section("conversion from var rank to fixed rank");
- {
- ra::Big<int> a({2, 3}, ra::_0*3+ra::_1);
- ra::View<int, 2> b = a;
- tr.info("fixing rank").test_eq(ra::_0*3+ra::_1, b);
- tr.info("fixing rank is view").test(a.data()==b.data());
- }
- return tr.summary();
- }
|