Skip to content
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
3 changes: 3 additions & 0 deletions tensorboard/plugins/graph/tf_graph_common/common_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,9 @@ async function slimGraphToHierarchy(

async function pbtxtToGraphDef(text: string): Promise<tf_graph_proto.GraphDef> {
const encoder = new TextEncoder();
// TODO: go/ts59upgrade - Remove this suppression after TS 5.9.2 upgrade
// TS2345: Argument of type 'Uint8Array<ArrayBuffer>' is not assignable to parameter of type 'ArrayBuffer'.
// @ts-ignore
return tf_graph_parser.parseGraphPbTxt(encoder.encode(text));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ describe('line_chart_v2/lib/compact_data_series', () => {
length: 2,
},
],
// TODO: go/ts59upgrade - Remove this suppression after TS 5.9.2 upgrade
// TS2322: Type 'Float32Array<ArrayBuffer>' is not assignable to type 'ArrayBuffer'.
// @ts-ignore
flattenedSeries: new Float32Array([1, 2, 3]),
};

Expand Down
Loading