Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
loadbalancing
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
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
SLMS
loadbalancing
Merge requests
!22
added maximum based tensor method
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
added maximum based tensor method
tensor_max
into
master
Overview
0
Commits
7
Pipelines
5
Changes
1
Merged
added maximum based tensor method
Rene Halver
requested to merge
tensor_max
into
master
Feb 1, 2022
Overview
0
Commits
7
Pipelines
5
Changes
1
The addition of the experimental maximum based tensor based load-balancing method.
0
0
Merge request reports
Viewing commit
3e4531d8
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
3e4531d8
bugfix logo creation
· 3e4531d8
Rene Halver
authored
Feb 2, 2022
example/create_logo.cpp
+
1
−
1
View file @ 3e4531d8
Edit in single-file editor
Open in Web IDE
Show full file
@@ -12,7 +12,7 @@
int
main
(
int
argv
,
char
**
argc
)
{
// if applicable read in size in x
const
double
Lx
=
(
argv
>=
3
)
?
atof
(
argc
[
1
])
:
LX_DEFAULT
;
const
double
Lx
=
(
argv
>=
2
)
?
atof
(
argc
[
1
])
:
LX_DEFAULT
;
// if applicable read in size in y
const
double
Ly
=
(
argv
>=
3
)
?
atof
(
argc
[
2
])
:
LY_DEFAULT
;
// if applicable read in number of particles in z
Loading