Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102545463
llt.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Feb 21, 20:46
Size
298 B
Mime Type
text/x-c
Expires
Sun, Feb 23, 20:46 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24359840
Attached To
rDLMA Diffusion limited mixed aggregation
llt.cpp
View Options
#include "gemm_common.h"
#include <Eigen/Cholesky>
EIGEN_DONT_INLINE
void llt(const Mat &A, const Mat &B, Mat &C)
{
C = A;
C.diagonal().array() += 1000;
Eigen::internal::llt_inplace<Mat::Scalar, Lower>::blocked(C);
}
int main(int argc, char **argv)
{
return main_gemm(argc, argv, llt);
}
Event Timeline
Log In to Comment