Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Merge requests
!45
An error occurred while fetching the assigned milestone of the selected merge_request.
Matrices revision
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Matrices revision
matrices-revision
into
develop
Overview
0
Commits
105
Pipelines
0
Changes
41
Merged
Tomáš Oberhuber
requested to merge
matrices-revision
into
develop
5 years ago
Overview
0
Commits
105
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
version 3
version 3
1d6b3d32
5 years ago
version 2
62089f7f
5 years ago
version 1
8254fd03
5 years ago
develop (base)
and
latest version
latest version
b36b0fe5
105 commits,
5 years ago
version 3
1d6b3d32
104 commits,
5 years ago
version 2
62089f7f
103 commits,
5 years ago
version 1
8254fd03
102 commits,
5 years ago
Show latest version
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Benchmarks/SpMV/spmv.h
+
2
−
1
Options
@@ -180,10 +180,11 @@ benchmarkSpMV( Benchmark& benchmark,
auto
spmvHost
=
[
&
]()
{
hostMatrix
.
vectorProduct
(
hostVector
,
hostVector2
);
};
#ifdef HAVE_CUDA
auto
spmvCuda
=
[
&
]()
{
deviceMatrix
.
vectorProduct
(
deviceVector
,
deviceVector2
);
};
#ifdef HAVE_CUDA
auto
spmvCusparse
=
[
&
]()
{
cusparseCSR
.
vectorProduct
(
deviceVector
,
deviceVector2
);
};
Loading