From db04c0a854c3b0b326e8df5fa365955eec9173e4 Mon Sep 17 00:00:00 2001 From: Stephan Lee Date: Mon, 22 Feb 2021 13:18:59 -0800 Subject: [PATCH] line chart: enable GPU line chart by default This change enables the GPU line chart, the new line chart implementation, on by default in the time series dashboard. We will, in the future, remove the old implementation. --- .../feature_flag/store/feature_flag_store_config_provider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorboard/webapp/feature_flag/store/feature_flag_store_config_provider.ts b/tensorboard/webapp/feature_flag/store/feature_flag_store_config_provider.ts index 173a1f4a72..dd8468238f 100644 --- a/tensorboard/webapp/feature_flag/store/feature_flag_store_config_provider.ts +++ b/tensorboard/webapp/feature_flag/store/feature_flag_store_config_provider.ts @@ -22,7 +22,7 @@ export const initialState: FeatureFlagState = { defaultFlags: { enabledExperimentalPlugins: [], inColab: false, - enableGpuChart: false, + enableGpuChart: true, scalarsBatchSize: undefined, }, flagOverrides: {},