Skylark (Sketching Library)  0.1
/var/lib/jenkins/jobs/Skylark/workspace/nla/sketched_svd.hpp
Go to the documentation of this file.
00001 #ifndef SKYLARK_SKETCHED_SVD_HPP
00002 #define SKYLARK_SKETCHED_SVD_HPP
00003 
00004 #include "../config.h"
00005 
00006 namespace skylark { namespace nla {
00007 
00017 template <typename InputMatrixType,
00018           typename OutputMatrixType,
00019           typename SketchTransformType
00020           >
00021 struct sketched_svd_t {};
00022 
00023 } } 
00025 #if SKYLARK_HAVE_ELEMENTAL
00026 #include "sketched_svd_Elemental.hpp"
00027 #endif
00028 
00029 #if 0
00030 
00031 #if SKYLARK_HAVE_COMBBLAS
00032 #include "sketched_svd_CombBLAS.hpp"
00033 #endif
00034 #endif
00035 
00036 #endif