Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
[Core] Set the default value of pipeline_check_alive to false (#736)
Browse files Browse the repository at this point in the history
  • Loading branch information
merrymercy authored Oct 8, 2022
1 parent 15c0a52 commit 4cdd024
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion alpa/global_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(self):
self.always_donate_micro_batch_vars = True

########## Options of pipeline runtime ##########
self.pipeline_check_alive = True
self.pipeline_check_alive = False
# Whether to sync before and after the executable for accurate internal
# timer
self.pipeline_sync_for_timer = False
Expand Down
5 changes: 5 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,11 @@ def __call__(self, filename):
"conf_py_path": "/docs/",
}

html_theme_options = {
'analytics_id': 'G-587CCSSRL2',
'analytics_anonymize_ip': False,
}

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
Expand Down

0 comments on commit 4cdd024

Please sign in to comment.