From 4cdd024aa0a1fea7c8566c278e2b4adeaa32299c Mon Sep 17 00:00:00 2001 From: Lianmin Zheng Date: Sat, 8 Oct 2022 06:14:53 -0700 Subject: [PATCH] [Core] Set the default value of pipeline_check_alive to false (#736) --- alpa/global_env.py | 2 +- docs/conf.py | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/alpa/global_env.py b/alpa/global_env.py index f950901ae..0b6f91b18 100644 --- a/alpa/global_env.py +++ b/alpa/global_env.py @@ -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 diff --git a/docs/conf.py b/docs/conf.py index b8f858a00..26cb14eba 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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".