numerics 0.1.0
Loading...
Searching...
No Matches
impl.hpp
Go to the documentation of this file.
1/// @file linalg/svd/backends/seq/impl.hpp
2/// @brief Private declarations for the sequential SVD backend.
3#pragma once
4
5#include "linalg/svd/svd.hpp"
6
7namespace num::backends::seq {
8
9SVDResult svd(const Matrix& A, real tol, idx max_sweeps);
10
11} // namespace num::backends::seq
SVDResult svd(const Matrix &A, real tol, idx max_sweeps)
Definition svd.cpp:11
double real
Definition types.hpp:10
std::size_t idx
Definition types.hpp:11
Singular Value Decomposition – dense and randomized truncated.