Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pugs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
code
pugs
Merge requests
!93
Do not initializa Kokkos Arrays anymore
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Do not initializa Kokkos Arrays anymore
feature/linear-algebra
into
develop
Overview
0
Commits
12
Pipelines
0
Changes
65
Merged
Do not initializa Kokkos Arrays anymore
Stéphane Del Pino
requested to merge
feature/linear-algebra
into
develop
Jun 25, 2021
Overview
0
Commits
12
Pipelines
0
Changes
65
This should improve performances for small Arrays
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
548029ae
12 commits,
Jun 25, 2021
65 files
+
2213
−
476
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
65
src/algebra/BiCGStab.hpp
+
2
−
2
View file @ 548029ae
Edit in single-file editor
Open in Web IDE
Show full file
@@ -9,10 +9,10 @@
struct
BiCGStab
{
template
<
typename
VectorType
,
typename
Matrix
Type
>
template
<
typename
MatrixType
,
typename
VectorType
,
typename
RHSVector
Type
>
BiCGStab
(
const
MatrixType
&
A
,
VectorType
&
x
,
const
VectorType
&
b
,
const
RHS
VectorType
&
b
,
const
double
epsilon
,
const
size_t
maximum_iteration
,
const
bool
verbose
)
Loading