Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F31184236
mm_eigen.hh
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
Tue, Mar 28, 04:03
Size
258 B
Mime Type
text/x-c
Expires
Thu, Mar 30, 04:03 (2 d)
Engine
blob
Format
Raw Data
Handle
11709093
Attached To
R12667 gbench-stream
mm_eigen.hh
View Options
#include <Eigen/Dense>
inline
void
dsqmm3
(
double
*
a
,
double
*
b
,
double
*
c
,
int
n
)
{
using
Matrix
=
Eigen
::
Map
<
Eigen
::
Matrix
<
double
,
Eigen
::
Dynamic
,
Eigen
::
Dynamic
>>
;
Matrix
A
(
a
,
n
,
n
);
Matrix
B
(
a
,
n
,
n
);
Matrix
C
(
a
,
n
,
n
);
C
=
A
*
B
;
}
Event Timeline
Log In to Comment