Skip to content

Commit

Permalink
Adding complete config files.
Browse files Browse the repository at this point in the history
Former-commit-id: d3aa86e
  • Loading branch information
leobago committed Nov 6, 2017
1 parent aa4bdea commit f39d3fb
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/README
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
3) With your favorite text editor open and edit the FTI configuration file
configBkp.fti to set the three directory variables.

- vim configBkp.fti (Edit Ckpt_dir, Glbl_dir, Meta_dir)
- vim configBkp.fti (Edit Ckpt_dir, Glbl_dir, Meta_dir) (Please use absolute paths.)

4) Run examples by going to fti/build/examples and:
- execute: "make init" <- copies configBkp.fti to config.fti
Expand Down
22 changes: 21 additions & 1 deletion examples/config.fti
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ keep_last_ckpt = 0
# The total number of nodes MUST be multiple of this parameter
Group_size = 4

# Number of iterations between iteration length sync (0 => 512 iterations)
# If you app has iterations of varying length set this value between (1 and 10)
max_sync_intv = 0

# Set to 1 for POSIX, 2 for MPI-IO or 3 for SIONLib.
ckpt_io = 1

# The verbosity of FTI. (2 is recommended)
# 3 (Print only errors, silent mode)
# 2 (Print errors and some few important information)
Expand Down Expand Up @@ -102,7 +109,7 @@ frequency = 0
# The ckpt files are decomposed in blocks of size Block_size KB
Block_size = 1024

# The ckpt files are transfered in chunks of size Transfer_size MB
# The ckpt files are transfered in chunks of size Transfer_size MB
# from local to PFS
Transfer_size = 16

Expand All @@ -112,3 +119,16 @@ Mpi_tag = 2612
# Set to 1 if you are doing a test in local in a single computer
Local_test = 1

#This option only impacts if -DENABLE_LUSTRE was added to the Cmake command.
#It sets the striping unit for the MPI-IO file.
lustre_striping_unit = 4194304

#This option only impacts if -DENABLE_LUSTRE was added to the Cmake command.
#It sets the striping factor for the MPI-IO file.
lustre_striping_factor = -1

#This option only impacts if -DENABLE_LUSTRE was added to the Cmake command.
#It sets the striping offset for the MPI-IO file.
lustre_striping_offset = -1


22 changes: 21 additions & 1 deletion examples/configBkp.fti
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ keep_last_ckpt = 0
# The total number of nodes MUST be multiple of this parameter
Group_size = 4

# Number of iterations between iteration length sync (0 => 512 iterations)
# If you app has iterations of varying length set this value between (1 and 10)
max_sync_intv = 0

# Set to 1 for POSIX, 2 for MPI-IO or 3 for SIONLib.
ckpt_io = 1

# The verbosity of FTI. (2 is recommended)
# 3 (Print only errors, silent mode)
# 2 (Print errors and some few important information)
Expand Down Expand Up @@ -102,7 +109,7 @@ frequency = 0
# The ckpt files are decomposed in blocks of size Block_size KB
Block_size = 1024

# The ckpt files are transfered in chunks of size Transfer_size MB
# The ckpt files are transfered in chunks of size Transfer_size MB
# from local to PFS
Transfer_size = 16

Expand All @@ -112,3 +119,16 @@ Mpi_tag = 2612
# Set to 1 if you are doing a test in local in a single computer
Local_test = 1

#This option only impacts if -DENABLE_LUSTRE was added to the Cmake command.
#It sets the striping unit for the MPI-IO file.
lustre_striping_unit = 4194304

#This option only impacts if -DENABLE_LUSTRE was added to the Cmake command.
#It sets the striping factor for the MPI-IO file.
lustre_striping_factor = -1

#This option only impacts if -DENABLE_LUSTRE was added to the Cmake command.
#It sets the striping offset for the MPI-IO file.
lustre_striping_offset = -1


0 comments on commit f39d3fb

Please sign in to comment.