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

[Core] Set the default value of pipeline_check_alive to false #736

Merged
merged 3 commits into from
Oct 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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