Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102560725
gemvt.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
Sat, Feb 22, 00:30
Size
205 B
Mime Type
text/x-c
Expires
Mon, Feb 24, 00:30 (2 d)
Engine
blob
Format
Raw Data
Handle
24359884
Attached To
rDLMA Diffusion limited mixed aggregation
gemvt.cpp
View Options
#include "gemv_common.h"
EIGEN_DONT_INLINE
void gemv(const Mat &A, Vec &B, const Vec &C)
{
B.noalias() += A.transpose() * C;
}
int main(int argc, char **argv)
{
return main_gemv(argc, argv, gemv);
}
Event Timeline
Log In to Comment