• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..24-Aug-2018-

Gemv/H24-Aug-2018-329265

QuasiTrsv/H24-Aug-2018-1,177907

Symv/H24-Aug-2018-445356

Trsv/H24-Aug-2018-550394

Gemv.hppH A D24-Aug-20184.7 KiB173151

Ger.hppH A D24-Aug-20185.3 KiB165127

Geru.hppH A D24-Aug-20184.5 KiB139105

Hemv.hppH A D24-Aug-2018902 4227

Her.hppH A D24-Aug-2018808 3924

Her2.hppH A D24-Aug-2018882 4227

QuasiTrsv.hppH A D24-Aug-20181.8 KiB6954

README.mdH A D24-Aug-20181.3 KiB2925

Symv.hppH A D24-Aug-20188 KiB250208

Syr.hppH A D24-Aug-20184.8 KiB158134

Syr2.hppH A D24-Aug-201810.6 KiB298266

Trmv.hppH A D24-Aug-20181.3 KiB4631

Trr.hppH A D24-Aug-20183.5 KiB130108

Trr2.hppH A D24-Aug-20184.2 KiB139118

Trsv.hppH A D24-Aug-20181.9 KiB7560

README.md

1### `include/elemental/blas-like/level2/`
2
3The level-2 BLAS-like routines implemented in this folder are:
4
5-  `ApplyColumnPivots.hpp`: apply a permutation matrix from the right
6-  `ApplyRowPivots.hpp`: apply a permutation matrix from the left
7-  `ApplySymmetricPivots.hpp`: apply a symmetric permutation to a symmetric
8   matrix
9-  `ComposePivots.hpp`: form the explicit image and preimage of a permutation
10-  `Gemv/`: supporting routines for GEneral Matrix/Vector multiplication (GEMV)
11-  `Gemv.hpp`: interface for GEMV
12-  `Ger.hpp`: GEneral Rank-one update (GER)
13-  `Geru.hpp`: unconjugated version of GER
14-  `Hemv.hpp`: HErmitian Matrix/Vector multiplication (HEMV)
15-  `Her2.hpp`: HErmitian Rank-2 update (HER2)
16-  `Her.hpp`: HErmitian Rank-1 update (HER)
17-  `Symv/`: supporting routines for SYmmetric Matrix/Vector multiplication
18   (SYMV)
19-  `Symv.hpp`: interface for SYMV
20-  `Syr2.hpp`: SYmmetric Rank-2 update (SYR2)
21-  `Syr.hpp`: SYmmetric Rank-1 update (SYR)
22-  `Trmv.hpp`: TRiangular Matrix/Vector multiplication (TRMV)
23-  `Trr2.hpp`: TRiangular Rank-2 update (TRR2)
24-  `Trr.hpp`: TRiangular Rank-1 update (TRR)
25-  `Trsv/`: supporting routines for TRiangular Solve against Vector (TRSV)
26-  `Trsv.hpp`: interface for TRSV
27
28NOTE: The symmetric pivot applications are not yet optimized.
29