Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120235822
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
Wed, Jul 2, 20:44
Size
298 B
Mime Type
text/x-c
Expires
Fri, Jul 4, 20:44 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27159494
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