Skip to content

Commit

Permalink
line chart: enable GPU line chart by default (#4695)
Browse files Browse the repository at this point in the history
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.

To disable the new implementation, you can pass ?fastChart=false in the query param.

*: Probably after major/minor release of TensorBoard.
  • Loading branch information
stephanwlee authored Feb 24, 2021
1 parent 7bc40d0 commit 215942c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const initialState: FeatureFlagState = {
defaultFlags: {
enabledExperimentalPlugins: [],
inColab: false,
enableGpuChart: false,
enableGpuChart: true,
scalarsBatchSize: undefined,
},
flagOverrides: {},
Expand Down

0 comments on commit 215942c

Please sign in to comment.