Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SWIFTsim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
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
Show more breadcrumbs
SWIFT
SWIFTsim
Merge requests
!1735
Draft: Add host weights to METIS partitioning
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Add host weights to METIS partitioning
metishostweights
into
master
Overview
4
Commits
9
Changes
3
Open
Peter W. Draper
requested to merge
metishostweights
into
master
1 year ago
Overview
4
Commits
9
Changes
3
Expand
See
#856
first implementation of the basics. Largely untested!
0
0
Merge request reports
Compare
master
version 7
45725852
1 year ago
version 6
ed530b25
1 year ago
version 5
7d4f9436
1 year ago
version 4
1b281584
1 year ago
version 3
f541c900
1 year ago
version 2
37032af6
1 year ago
version 1
4a95cb41
1 year ago
master (base)
and
latest version
latest version
6b25a916
9 commits,
1 year ago
version 7
45725852
8 commits,
1 year ago
version 6
ed530b25
7 commits,
1 year ago
version 5
7d4f9436
6 commits,
1 year ago
version 4
1b281584
5 commits,
1 year ago
version 3
f541c900
4 commits,
1 year ago
version 2
37032af6
3 commits,
1 year ago
version 1
4a95cb41
2 commits,
1 year ago
3 files
+
268
−
53
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
examples/parameter_example.yml
+
5
−
0
Options
@@ -255,11 +255,16 @@ DomainDecomposition:
# using CPU time trigger
usemetis
:
0
# Use serial METIS when ParMETIS is also available.
adaptive
:
1
# Use adaptive repartition when ParMETIS is available, otherwise simple refinement.
permute
:
1
# Use a permutation of the solution if that reduces particle movement.
itr
:
100
# When adaptive defines the ratio of inter node communication time to data redistribution time, in the range 0.00001 to 10000000.0.
# Lower values give less data movement during redistributions, at the cost of global balance which may require more communication.
use_fixed_costs
:
0
# If 1 then use any compiled in fixed costs for
# task weights in first repartition, if 0 only use task timings, if > 1 only use
# fixed costs, unless none are available.
host_weights_file
:
none
# (Optional) A text file with MPI_processor_name vertex_weight columns.
# Used when running on cluster with heterogeneous compute nodes,
# the weight is the extra size of the vertex, so for instance reflects
# the node relative speeds, larger is faster.
# Structure finding options (requires velociraptor)
StructureFinding
:
Loading