KokkosBlas::rotm¶
Defined in header: KokkosBlas1_rotm.hpp
template <class execution_space, class VectorView, class ParamView>
void rotm(
execution_space const& space,
VectorView const& X, VectorView const& Y,
ParamView const& param);
template <class VectorView, class ParamView>
void rotm(
VectorView const& X, VectorView const& Y,
ParamView const& param);
Applies the modified Givens rotations defined by the parameters in
param
to the pair of vectorsX
andY
. This executes on the providedspace
instance.Applies the modified Givens rotations defined by the parameters in
param
to the pair of vectorsX
andY
. This executes on the default instance of typetypename VectorView::execution_space
.
Please refer to the documentation of rotmg for the description of the data stored in param
.
The function will throw a runtime exception if X.extent(0) != Y.extent(0)
.
Parameters¶
- space:
execution space instance
- X, Y:
pair of vectors to rotate
- params:
5-element view containing the control parameter and coefficients defining the rotation to apply
Type Requirements¶
execution_space must be a Kokkos execution space
VectorView must be a Kokkos View of rank 1 that satisfies:
Kokkos::SpaceAccessibility<execution_space, typename VectorView::memory_space>::accessible == true
std::is_same_v<typename VectorView::non_const_value_type, typename VectorView::value_type> == true
!Kokkos::ArithTraits<typename VectorView::value_type>::is_complex
ParamView must be a Kokkos View of rank 1 and compile-time extent 5 that satisfies:
Kokkos::SpaceAccessibility<execution_space, typename ParamView::memory_space>::accessible == true
std::is_same_v<typename ParamView::non_const_value_type, typename ParamView::value_type> == true
!Kokkos::ArithTraits<typename ParamView::value_type>::is_complex
Example¶
This example shows how to eliminate an entry using a modified Givens rotation.
It uses rotmg to compute the rotation parameters and rotm
to apply the rotation.
#include <iostream>
#include <Kokkos_Core.hpp>
#include <Kokkos_Random.hpp>
#include "KokkosBlas1_rotmg.hpp"
#include "KokkosBlas1_rotm.hpp"
#include "KokkosKernels_PrintUtils.hpp"
using execution_space = Kokkos::DefaultExecutionSpace;
using Scalar = double;
using Vector = Kokkos::View<Scalar*, execution_space>;
using ParamView = Kokkos::View<Scalar[5], execution_space>;
using ScalarView = Kokkos::View<Scalar, execution_space>;
int main(int argc, char* argv[]) {
Kokkos::initialize();
{
const int N = 10;
Vector x("x", N);
Vector y("y", N);
ScalarView d1("d1");
ScalarView d2("d2");
ParamView param("param");
// Populate x,y with uniform random values between 0 and 10
Kokkos::Random_XorShift64_Pool<execution_space> rand_pool(13718);
Kokkos::fill_random(x, rand_pool, Scalar(10));
Kokkos::fill_random(y, rand_pool, Scalar(10));
// Populate input vector scaling factors with 1
Kokkos::deep_copy(d1, Scalar(1));
Kokkos::deep_copy(d2, Scalar(1));
std::cout << "x,y before applying modified Givens rotation:\n";
KokkosKernels::Impl::kk_print_1Dview(std::cout, x);
KokkosKernels::Impl::kk_print_1Dview(std::cout, y);
// Calculate Givens rotation coefficients to eliminate y(0)
KokkosBlas::rotmg<execution_space, ScalarView, ScalarView, ParamView>(
execution_space(), d1, d2, Kokkos::subview(x, 0), Kokkos::subview(y, 0), param);
auto paramHost = Kokkos::create_mirror_view_and_copy(Kokkos::HostSpace(), param);
std::cout << "\nrotmg output (rotation parameters) to eliminate y(0):\n";
std::cout << "d1 = ";
KokkosKernels::Impl::kk_print_1Dview(std::cout, d1);
std::cout << "d2 = ";
KokkosKernels::Impl::kk_print_1Dview(std::cout, d2);
std::cout << "flag = " << paramHost(0) << '\n';
std::cout << "h components = ";
for (int i = 0; i < 4; i++) std::cout << paramHost(1 + i) << " ";
std::cout << '\n';
// Zero out y(0), which was left unmodified by rotmg.
Kokkos::deep_copy(Kokkos::subview(y, 0), Scalar(0));
// Apply the rotation to the remaining entries of x and y
KokkosBlas::rotm(execution_space(), Kokkos::subview(x, Kokkos::make_pair(1, N)),
Kokkos::subview(y, Kokkos::make_pair(1, N)), param);
// Apply scaling factors: sqrt(d1) and sqrt(d2) to x and y respectively
Kokkos::parallel_for(
Kokkos::RangePolicy<execution_space>(0, N), KOKKOS_LAMBDA(int i) {
x(i) *= Kokkos::sqrt(d1());
y(i) *= Kokkos::sqrt(d2());
});
std::cout << "\nx,y after applying modified Givens rotation and scaling by [sqrt(d1), sqrt(d2)]):\n";
KokkosKernels::Impl::kk_print_1Dview(std::cout, x);
KokkosKernels::Impl::kk_print_1Dview(std::cout, y);
}
Kokkos::finalize();
}